public static enum TransactionLineItem.Kind extends Enum<TransactionLineItem.Kind>
| Enum Constant and Description |
|---|
CREDIT |
DEBIT |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TransactionLineItem.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionLineItem.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionLineItem.Kind DEBIT
public static final TransactionLineItem.Kind CREDIT
public static final TransactionLineItem.Kind UNRECOGNIZED
private final String name
public static TransactionLineItem.Kind[] values()
for (TransactionLineItem.Kind c : TransactionLineItem.Kind.values()) System.out.println(c);
public static TransactionLineItem.Kind 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 toString()
toString in class Enum<TransactionLineItem.Kind>Copyright © 2013-2018. All Rights Reserved.