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