private static enum DiskStoreConfiguration.Env extends java.lang.Enum<DiskStoreConfiguration.Env>
Enum Constant and Description |
---|
EHCACHE_DISK_STORE_DIR |
JAVA_IO_TMPDIR |
USER_DIR |
USER_HOME |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
variable |
Modifier and Type | Method and Description |
---|---|
(package private) java.lang.String |
substitute(java.lang.String string) |
static DiskStoreConfiguration.Env |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DiskStoreConfiguration.Env[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiskStoreConfiguration.Env USER_HOME
public static final DiskStoreConfiguration.Env USER_DIR
public static final DiskStoreConfiguration.Env JAVA_IO_TMPDIR
public static final DiskStoreConfiguration.Env EHCACHE_DISK_STORE_DIR
public static DiskStoreConfiguration.Env[] values()
for (DiskStoreConfiguration.Env c : DiskStoreConfiguration.Env.values()) System.out.println(c);
public static DiskStoreConfiguration.Env 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 nulljava.lang.String substitute(java.lang.String string)