public static enum ChargedItem.ChargedItemFieldType extends java.lang.Enum<ChargedItem.ChargedItemFieldType>
charged item.| Enum Constant and Description |
|---|
BOOLEAN
Enumeration value for a field containing a
Boolean value |
DATE
Enumeration value for a field containing a
Date value |
NUMBER
Enumeration value for a field containing a
BigDecimal value |
STRING
Enumeration value for a field containing a
String value |
| Modifier and Type | Method and Description |
|---|---|
static ChargedItem.ChargedItemFieldType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChargedItem.ChargedItemFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChargedItem.ChargedItemFieldType STRING
String valuepublic static final ChargedItem.ChargedItemFieldType NUMBER
BigDecimal valuepublic static final ChargedItem.ChargedItemFieldType DATE
Date valuepublic static final ChargedItem.ChargedItemFieldType BOOLEAN
Boolean valuepublic static ChargedItem.ChargedItemFieldType[] values()
for (ChargedItem.ChargedItemFieldType c : ChargedItem.ChargedItemFieldType.values()) System.out.println(c);
public static ChargedItem.ChargedItemFieldType 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 null