|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ChangeType>
org.apache.directory.api.ldap.model.message.controls.ChangeType
public enum ChangeType
Enumeration type for entry changes associates with the persistent search control and the entry change control. Used for the following ASN1 enumeration:
changeType ENUMERATED
{
add (1),
delete (2),
modify (4),
modDN (8)
}
| Enum Constant Summary | |
|---|---|
ADD
|
|
DELETE
|
|
MODDN
|
|
MODIFY
|
|
| Method Summary | |
|---|---|
static ChangeType |
getChangeType(int value)
Gets the changeType enumeration type for an integer value. |
int |
getValue()
|
boolean |
presentIn(int changeTypes)
Checks via bitwise AND to see if this ChangeType value is within the supplied changeTypes. |
static ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ChangeType[] |
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 ChangeType ADD
public static final ChangeType DELETE
public static final ChangeType MODIFY
public static final ChangeType MODDN
| Method Detail |
|---|
public static ChangeType[] values()
for (ChangeType c : ChangeType.values()) System.out.println(c);
public static ChangeType 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 int getValue()
public boolean presentIn(int changeTypes)
changeTypes - The supplied changeTypes.
public static ChangeType getChangeType(int value)
value - the value to get the enumeration for
IllegalArgumentException - if the value is undefined
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||