|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ObjectOperationOption>
com.evolveum.midpoint.schema.ObjectOperationOption
public enum ObjectOperationOption
Enum Constant Summary | |
---|---|
CRYPT
Encrypt any cleartext data on write, decrypt any encrypted data on read. |
|
FORCE
Force the operation even if it would otherwise fail due to external failure. |
|
NO_FETCH
No not fetch any information from external sources, e.g. |
|
RAW
Avoid any smart processing of the data except for schema application. |
|
RESOLVE
Resolve the object reference. |
Method Summary | |
---|---|
static Collection<ObjectOperationOption> |
createCollection(ObjectOperationOption... options)
|
static boolean |
hasOption(Collection<ObjectOperationOption> options,
ObjectOperationOption option)
|
static ObjectOperationOption |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ObjectOperationOption[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ObjectOperationOption RESOLVE
public static final ObjectOperationOption NO_FETCH
public static final ObjectOperationOption FORCE
public static final ObjectOperationOption RAW
public static final ObjectOperationOption CRYPT
Method Detail |
---|
public static ObjectOperationOption[] values()
for (ObjectOperationOption c : ObjectOperationOption.values()) System.out.println(c);
public static ObjectOperationOption valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static boolean hasOption(Collection<ObjectOperationOption> options, ObjectOperationOption option)
public static Collection<ObjectOperationOption> createCollection(ObjectOperationOption... options)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |