public enum TransactionNature extends java.lang.Enum<TransactionNature>
| Enum Constant and Description |
|---|
NotSpecified
Not specified.
|
REFUND
REFUND transaction nature.
|
REGULAR
REGULAR transaction nature.
|
REPUDIATION
REPUDIATION transaction nature.
|
SETTLEMENT
SETTLEMENT transaction nature.
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionNature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionNature NotSpecified
public static final TransactionNature REGULAR
public static final TransactionNature REFUND
public static final TransactionNature REPUDIATION
public static final TransactionNature SETTLEMENT
public static TransactionNature[] values()
for (TransactionNature c : TransactionNature.values()) System.out.println(c);
public static TransactionNature 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