Enum Class LdapSearchScope
- All Implemented Interfaces:
Serializable
,Comparable<LdapSearchScope>
,Constable
ldap search scope
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionsearch an objectsearch in the one level DN of the treesearch in subtrees of the DN of the tree -
Method Summary
Modifier and TypeMethodDescriptionabstract int
static LdapSearchScope
Returns the enum constant of this class with the specified name.static LdapSearchScope
valueOfIgnoreCase
(String string, boolean exceptionOnNull) do a case-insensitive matchingstatic LdapSearchScope[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OBJECT_SCOPE
search an object -
ONELEVEL_SCOPE
search in the one level DN of the tree -
SUBTREE_SCOPE
search in subtrees of the DN of the tree
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getSeachControlsConstant
public abstract int getSeachControlsConstant()- Returns:
- the constant
-
valueOfIgnoreCase
do a case-insensitive matching- Parameters:
string
-exceptionOnNull
- will not allow null or blank entries- Returns:
- the enum or null or exception if not found
-