public enum PersistentSearchChangeType extends Enum<PersistentSearchChangeType>
PersistentSearchRequestControl and returned by the EntryChangeNotificationControl. See http://tools.ietf.org/id/draft-ietf-ldapext-psearch-03.txt.| Enum Constant and Description |
|---|
ADD
add.
|
DELETE
delete.
|
MODDN
modify dn.
|
MODIFY
modify.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value
underlying value.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value()
Returns the value.
|
static PersistentSearchChangeType |
valueOf(int i)
Returns the persistent search change type for the supplied integer constant.
|
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 MODDN
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 int value()
public static PersistentSearchChangeType valueOf(int i)
i - to find change type forCopyright © 2003-2019 Virginia Tech. All Rights Reserved.