Enum ImportFieldType
- java.lang.Object
-
- java.lang.Enum<ImportFieldType>
-
- com.infinitekind.moneydance.model.txtimport.ImportFieldType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ImportFieldType>
public enum ImportFieldType extends java.lang.Enum<ImportFieldType>
Enum that specifies the type of a transaction field in an import
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMOUNT
BALANCE
CATEGORY
CHECKNUM
CREDIT_AMOUNT
DATE
DEBIT_AMOUNT
DESCRIPTION
IGNORE
MEMO
STATUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.List<ImportFieldType>
allFields()
Return a list of all available import fields, in a sensible order for presenting in a UI to choose fieldsstatic java.util.List<ImportFieldType>
defaultImportFields()
Return a list of fields that comprise a sensible default for an importjava.lang.String
getTypeID()
static ImportFieldType
valueForTypeID(java.lang.String typeID)
static ImportFieldType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ImportFieldType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CATEGORY
public static final ImportFieldType CATEGORY
-
AMOUNT
public static final ImportFieldType AMOUNT
-
CHECKNUM
public static final ImportFieldType CHECKNUM
-
DATE
public static final ImportFieldType DATE
-
DESCRIPTION
public static final ImportFieldType DESCRIPTION
-
STATUS
public static final ImportFieldType STATUS
-
MEMO
public static final ImportFieldType MEMO
-
DEBIT_AMOUNT
public static final ImportFieldType DEBIT_AMOUNT
-
CREDIT_AMOUNT
public static final ImportFieldType CREDIT_AMOUNT
-
BALANCE
public static final ImportFieldType BALANCE
-
IGNORE
public static final ImportFieldType IGNORE
-
-
Method Detail
-
values
public static ImportFieldType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ImportFieldType c : ImportFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImportFieldType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getTypeID
public java.lang.String getTypeID()
-
valueForTypeID
public static ImportFieldType valueForTypeID(java.lang.String typeID)
-
allFields
public static java.util.List<ImportFieldType> allFields()
Return a list of all available import fields, in a sensible order for presenting in a UI to choose fields
-
defaultImportFields
public static java.util.List<ImportFieldType> defaultImportFields()
Return a list of fields that comprise a sensible default for an import
-
-