|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FileSystemSettings.Persistence>
org.das2.util.filesystem.FileSystemSettings.Persistence
public static enum FileSystemSettings.Persistence
Enum Constant Summary | |
---|---|
ALWAYS
Files persist indefinately, and the server is only contacted when a file is not available locally. |
|
EXPIRES
Files persist until a new version is available on the remote cache. |
|
NONE
No persistence. |
|
SESSION
Within a session, files are cached locally. |
Method Summary | |
---|---|
static FileSystemSettings.Persistence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FileSystemSettings.Persistence[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FileSystemSettings.Persistence NONE
public static final FileSystemSettings.Persistence SESSION
public static final FileSystemSettings.Persistence EXPIRES
public static final FileSystemSettings.Persistence ALWAYS
Method Detail |
---|
public static FileSystemSettings.Persistence[] values()
for (FileSystemSettings.Persistence c : FileSystemSettings.Persistence.values()) System.out.println(c);
public static FileSystemSettings.Persistence 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |