public enum ReaderMemory extends java.lang.Enum<ReaderMemory>
Enum Constant and Description |
---|
Permanent
Setting will be saved over power cycles
|
Temporary
Provides values for which scan engine memory to use
Setting is transient and will be lost at next power-off
|
Modifier and Type | Method and Description |
---|---|
static ReaderMemory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReaderMemory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReaderMemory Temporary
public static final ReaderMemory Permanent
public static ReaderMemory[] values()
for (ReaderMemory c : ReaderMemory.values()) System.out.println(c);
public static ReaderMemory 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