public enum RecalculationScope extends java.lang.Enum<RecalculationScope>
RecalculationScope
defines scopes for filestore usage recalculation.Enum Constant and Description |
---|
ALL
Recalculates all filestores.
|
CONTEXT
Recalculates only context filestores.
|
USER
Recalculates only user filestores.
|
Modifier and Type | Method and Description |
---|---|
static RecalculationScope |
getScopeByName(java.lang.String name)
Gets the scope associated with given name.
|
static RecalculationScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecalculationScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecalculationScope ALL
public static final RecalculationScope CONTEXT
public static final RecalculationScope USER
public static RecalculationScope[] values()
for (RecalculationScope c : RecalculationScope.values()) System.out.println(c);
public static RecalculationScope 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 RecalculationScope getScopeByName(java.lang.String name) throws java.lang.IllegalArgumentException
name
- The name to look-upnull
java.lang.IllegalArgumentException