- All Implemented Interfaces:
Serializable
,Comparable<LDAPOperations.SearchScope>
,Constable
- Enclosing interface:
LDAPOperations
Represents the serach scope as defined by RFC4511 Section 4.5.1.2.
- Since:
- 1.5
- Author:
- Jeremy Kuhn
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe scope is constrained to the entry named by baseObject.The scope is constrained to the immediate subordinates of the entry named by baseObject.The scope is constrained to the entry named by baseObject and to all its subordinates. -
Method Summary
Modifier and TypeMethodDescriptionstatic LDAPOperations.SearchScope
Returns the enum constant of this class with the specified name.static LDAPOperations.SearchScope[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BASE_OBJECT
The scope is constrained to the entry named by baseObject. -
SINGLE_LEVEL
The scope is constrained to the immediate subordinates of the entry named by baseObject. -
WHOLE_SUBTREE
The scope is constrained to the entry named by baseObject and to all its subordinates.
-
-
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
-