Serializable, Comparable<LedgerOrigin>public enum LedgerOrigin extends Enum<LedgerOrigin>
| Modifier and Type | Method | Description |
|---|---|---|
static LedgerOrigin |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static LedgerOrigin[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("cancel")
public static final LedgerOrigin CANCEL
@SerializedName("charge")
public static final LedgerOrigin CHARGE
@SerializedName("refund")
public static final LedgerOrigin REFUND
@SerializedName("manual")
public static final LedgerOrigin MANUAL
public static LedgerOrigin[] values()
for (LedgerOrigin c : LedgerOrigin.values()) System.out.println(c);
public static LedgerOrigin 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 nullCopyright © 2018 The Apache Software Foundation. All rights reserved.