public enum PersistentSearchChangeType extends Enum<PersistentSearchChangeType>
| Enum Constant and Description |
|---|
ADD
Indicates that an Add operation triggered the entry change notification.
|
DELETE
Indicates that an Delete operation triggered the entry change
notification.
|
MODIFY
Indicates that an Modify operation triggered the entry change
notification.
|
MODIFY_DN
Indicates that an Modify DN operation triggered the entry change
notification.
|
| Modifier and Type | Method and Description |
|---|---|
int |
intValue()
Returns the integer value for this change type as defined in the internet
draft.
|
String |
toString() |
static PersistentSearchChangeType |
valueOf(int value)
Returns the enum value that would return the provided argument value from its
intValue method. |
static PersistentSearchChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersistentSearchChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistentSearchChangeType ADD
public static final PersistentSearchChangeType DELETE
public static final PersistentSearchChangeType MODIFY
public static final PersistentSearchChangeType MODIFY_DN
public static PersistentSearchChangeType[] values()
for (PersistentSearchChangeType c : PersistentSearchChangeType.values()) System.out.println(c);
public static PersistentSearchChangeType 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 String toString()
toString in class Enum<PersistentSearchChangeType>public int intValue()
public static PersistentSearchChangeType valueOf(int value)
intValue method.value - The value to match.Copyright © 2011-2015 ForgeRock AS. All Rights Reserved.