public enum TransactionImportField extends java.lang.Enum<TransactionImportField> implements ImportField
ImportField.Mapping| Enum Constant and Description |
|---|
AMOUNT |
DATE |
DESCRIPTION |
FROM |
FROM_NAME |
TO |
TO_NAME |
TYPE |
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
PREFIX |
| Modifier and Type | Method and Description |
|---|---|
ImportType |
getImportType() |
java.lang.String |
getName() |
java.lang.String |
prefix()
Returns the prefix used by this class
|
static TransactionImportField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionImportField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final TransactionImportField FROM
public static final TransactionImportField TO
public static final TransactionImportField FROM_NAME
public static final TransactionImportField TO_NAME
public static final TransactionImportField TYPE
public static final TransactionImportField DATE
public static final TransactionImportField AMOUNT
public static final TransactionImportField DESCRIPTION
public static final java.lang.String PREFIX
public static TransactionImportField[] values()
for (TransactionImportField c : TransactionImportField.values()) System.out.println(c);
public static TransactionImportField 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 ImportType getImportType()
getImportType in interface ImportFieldpublic java.lang.String getName()
getName in interface ImportFieldpublic java.lang.String prefix()
PrefixedEnumprefix in interface PrefixedEnum