| Enum Constant and Description |
|---|
FILES_ONLY |
NONE |
RECURSIVE |
RECURSIVE_ALL |
| Modifier and Type | Method and Description |
|---|---|
static ViewScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewScope FILES_ONLY
public static final ViewScope NONE
public static final ViewScope RECURSIVE
public static final ViewScope RECURSIVE_ALL
public static ViewScope 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 static ViewScope[] values()
for (ViewScope c : ViewScope.values()) System.out.println(c);