public enum StoredValueTransactionType extends Enum<StoredValueTransactionType>
Java class for StoredValueTransactionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="StoredValueTransactionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Reserve"/>
<enumeration value="Activate"/>
<enumeration value="Load"/>
<enumeration value="Unload"/>
<enumeration value="Reverse"/>
<enumeration value="Duplicate"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTIVATE
Activate the account or the card
|
DUPLICATE
Duplicate the code or number provided by the loading or activation
|
LOAD
Load the account or the card with money
|
RESERVE
Reserve the account (e.g.
|
REVERSE
Reverse an activation or loading.
|
UNLOAD
Unload the account
|
| Modifier and Type | Method and Description |
|---|---|
static StoredValueTransactionType |
fromValue(String v)
From value stored value transaction type.
|
String |
value()
Value string.
|
static StoredValueTransactionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredValueTransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredValueTransactionType RESERVE
public static final StoredValueTransactionType ACTIVATE
public static final StoredValueTransactionType LOAD
public static final StoredValueTransactionType UNLOAD
public static final StoredValueTransactionType REVERSE
public static final StoredValueTransactionType DUPLICATE
public static StoredValueTransactionType[] values()
for (StoredValueTransactionType c : StoredValueTransactionType.values()) System.out.println(c);
public static StoredValueTransactionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static StoredValueTransactionType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.