public enum ReceiptVersion extends java.lang.Enum<ReceiptVersion>
Enum Constant and Description |
---|
ARTIFACT_EXPIRY
Artifact expiry receipt version.
|
BALANCE_CHANGE
Balance change receipt version.
|
BALANCE_TRANSFER
Balance transfer receipt version.
|
INFLATION_RECEIPT
Inflation receipt receipt version.
|
RESOLUTION_STATEMENT
Resolution statement receipt version.
|
TRANSACTION_STATEMENT
Transaction statement receipt version.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Returns enum value.
|
static ReceiptVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReceiptVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReceiptVersion BALANCE_TRANSFER
public static final ReceiptVersion BALANCE_CHANGE
public static final ReceiptVersion ARTIFACT_EXPIRY
public static final ReceiptVersion TRANSACTION_STATEMENT
public static final ReceiptVersion RESOLUTION_STATEMENT
public static final ReceiptVersion INFLATION_RECEIPT
public static ReceiptVersion[] values()
for (ReceiptVersion c : ReceiptVersion.values()) System.out.println(c);
public static ReceiptVersion 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 nullpublic int getValue()