public enum StoredValueTransactionTypeEnumeration extends Enum<StoredValueTransactionTypeEnumeration>
Java class for StoredValueTransactionTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="StoredValueTransactionTypeEnumeration">
<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 StoredValueTransactionTypeEnumeration |
fromValue(String v) |
String |
value() |
static StoredValueTransactionTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredValueTransactionTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredValueTransactionTypeEnumeration RESERVE
public static final StoredValueTransactionTypeEnumeration ACTIVATE
public static final StoredValueTransactionTypeEnumeration LOAD
public static final StoredValueTransactionTypeEnumeration UNLOAD
public static final StoredValueTransactionTypeEnumeration REVERSE
public static final StoredValueTransactionTypeEnumeration DUPLICATE
public static StoredValueTransactionTypeEnumeration[] values()
for (StoredValueTransactionTypeEnumeration c : StoredValueTransactionTypeEnumeration.values()) System.out.println(c);
public static StoredValueTransactionTypeEnumeration 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 StoredValueTransactionTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.