public static enum ReadOptions.SearchScope extends java.lang.Enum<ReadOptions.SearchScope>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
value() |
static ReadOptions.SearchScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReadOptions.SearchScope[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ReadOptions.SearchScope BASE
public static final ReadOptions.SearchScope ONELEVEL
public static final ReadOptions.SearchScope SUBTREE
public static ReadOptions.SearchScope[] values()
for (ReadOptions.SearchScope c : ReadOptions.SearchScope.values())
System.out.println(c);
public static ReadOptions.SearchScope valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()