public static enum PoTransaction.SessionSetting.ModificationMode extends java.lang.Enum<PoTransaction.SessionSetting.ModificationMode>
| Enum Constant and Description |
|---|
ATOMIC
The secure session is atomic.
|
MULTIPLE
Several secure sessions can be chained (to manage the writing of large amounts of data).
|
| Modifier and Type | Method and Description |
|---|---|
static PoTransaction.SessionSetting.ModificationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PoTransaction.SessionSetting.ModificationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PoTransaction.SessionSetting.ModificationMode ATOMIC
public static final PoTransaction.SessionSetting.ModificationMode MULTIPLE
public static PoTransaction.SessionSetting.ModificationMode[] values()
for (PoTransaction.SessionSetting.ModificationMode c : PoTransaction.SessionSetting.ModificationMode.values()) System.out.println(c);
public static PoTransaction.SessionSetting.ModificationMode 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