public enum SearchScope extends Enum<SearchScope>
Enum Constant and Description |
---|
OBJECT
object level search.
|
ONELEVEL
one level search.
|
SUBTREE
subtree search.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final SearchScope OBJECT
public static final SearchScope ONELEVEL
public static final SearchScope SUBTREE
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 nameNullPointerException
- if the argument is nullCopyright © 2003-2019 Virginia Tech. All Rights Reserved.