public enum ObjectOperationOption extends Enum<ObjectOperationOption>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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
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 nameNullPointerException - if the argument is nullpublic static boolean hasOption(Collection<ObjectOperationOption> options, ObjectOperationOption option)
public static Collection<ObjectOperationOption> createCollection(ObjectOperationOption... options)
Copyright © 2019 Evolveum. All rights reserved.