public static enum MockManifest.StoreMode extends java.lang.Enum<MockManifest.StoreMode>
Enum Constant and Description |
---|
IN_MEMORY
Store all saved files in memory.
|
PATH_ONLY
Store only the path of each saved file.
|
Modifier and Type | Method and Description |
---|---|
static MockManifest.StoreMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MockManifest.StoreMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MockManifest.StoreMode IN_MEMORY
public static final MockManifest.StoreMode PATH_ONLY
public static MockManifest.StoreMode[] values()
for (MockManifest.StoreMode c : MockManifest.StoreMode.values()) System.out.println(c);
public static MockManifest.StoreMode 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