|
Spring LDAP | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<SearchScope>
org.springframework.ldap.query.SearchScope
public enum SearchScope
Type safe definitions of search scopes.
| Enum Constant Summary | |
|---|---|
OBJECT
Corresponds to SearchControls.OBJECT_SCOPE |
|
ONELEVEL
Corresponds to SearchControls.ONELEVEL_SCOPE |
|
SUBTREE
Corresponds to SearchControls.SUBTREE_SCOPE |
|
| Method Summary | |
|---|---|
int |
getId()
|
static SearchScope |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SearchScope[] |
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 SearchScope OBJECT
SearchControls.OBJECT_SCOPE
public static final SearchScope ONELEVEL
SearchControls.ONELEVEL_SCOPE
public static final SearchScope SUBTREE
SearchControls.SUBTREE_SCOPE
| Method Detail |
|---|
public static SearchScope[] values()
for (SearchScope c : SearchScope.values()) System.out.println(c);
public static SearchScope 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 getId()
|
Spring LDAP | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||