|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AssertionType>
org.apache.directory.shared.ldap.filter.AssertionType
public enum AssertionType
All the different kind of assertions.
Enum Constant Summary | |
---|---|
AND
AND operator constant |
|
APPROXIMATE
approximate assertion node |
|
ASSERTION
Predicate assertion node |
|
EQUALITY
equality assertion node |
|
EXTENSIBLE
extensible match assertion node |
|
GREATEREQ
greater than or equal to assertion node |
|
LESSEQ
less than or equal to assertion node |
|
NOT
NOT operator constant |
|
OR
OR operator constant |
|
PRESENCE
presence assertion node |
|
SCOPE
scope assertion node |
|
SUBSTRING
substring match assertion node |
Method Summary | |
---|---|
static AssertionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AssertionType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AssertionType EQUALITY
public static final AssertionType PRESENCE
public static final AssertionType SUBSTRING
public static final AssertionType GREATEREQ
public static final AssertionType LESSEQ
public static final AssertionType APPROXIMATE
public static final AssertionType EXTENSIBLE
public static final AssertionType SCOPE
public static final AssertionType ASSERTION
public static final AssertionType OR
public static final AssertionType AND
public static final AssertionType NOT
Method Detail |
---|
public static final AssertionType[] values()
for(AssertionType c : AssertionType.values()) System.out.println(c);
public static AssertionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |