public static enum LdapSearcher.SearchScope extends Enum<LdapSearcher.SearchScope>
Enum Constant and Description |
---|
OBJECT_SCOPE |
ONELEVEL_SCOPE |
SUBTREE_SCOPE |
Modifier and Type | Method and Description |
---|---|
static LdapSearcher.SearchScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapSearcher.SearchScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LdapSearcher.SearchScope OBJECT_SCOPE
public static final LdapSearcher.SearchScope ONELEVEL_SCOPE
public static final LdapSearcher.SearchScope SUBTREE_SCOPE
public static LdapSearcher.SearchScope[] values()
for (LdapSearcher.SearchScope c : LdapSearcher.SearchScope.values()) System.out.println(c);
public static LdapSearcher.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 nameNullPointerException
- if the argument is nullCopyright © 2001–2019 JBoss by Red Hat. All rights reserved.