public static enum SearchScope.Enum extends Enum<SearchScope.Enum>
| Enum Constant and Description |
|---|
BASE_OBJECT |
SINGLE_LEVEL |
SUBORDINATES |
UNKNOWN
Used for unknown search scopes.
|
WHOLE_SUBTREE |
| Modifier and Type | Method and Description |
|---|---|
static SearchScope.Enum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchScope.Enum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchScope.Enum BASE_OBJECT
SearchScope.BASE_OBJECTpublic static final SearchScope.Enum SINGLE_LEVEL
SearchScope.SINGLE_LEVELpublic static final SearchScope.Enum WHOLE_SUBTREE
SearchScope.WHOLE_SUBTREEpublic static final SearchScope.Enum SUBORDINATES
SearchScope.SUBORDINATESpublic static final SearchScope.Enum UNKNOWN
public static SearchScope.Enum[] values()
for (SearchScope.Enum c : SearchScope.Enum.values()) System.out.println(c);
public static SearchScope.Enum 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 © 2011-2015 ForgeRock AS. All Rights Reserved.