public static enum Entries.DiffStrategy extends Enum<Entries.DiffStrategy>
Enum Constant and Description |
---|
COMPARE_BYTES
Attribute values are compared byte for byte.
|
EQUALITY_MATCHING_RULE
Attribute values are compared using their equality matching rule.
|
PERMISSIVE
Compute a minimal set of modifications optimized for use with the permissive modify request control.
|
Modifier and Type | Method and Description |
---|---|
static Entries.DiffStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Entries.DiffStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Entries.DiffStrategy COMPARE_BYTES
public static final Entries.DiffStrategy EQUALITY_MATCHING_RULE
public static final Entries.DiffStrategy PERMISSIVE
public static Entries.DiffStrategy[] values()
for (Entries.DiffStrategy c : Entries.DiffStrategy.values()) System.out.println(c);
public static Entries.DiffStrategy 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 nullCopyright 2010-2022 ForgeRock AS.