public static enum MField.FieldType extends Enum<MField.FieldType>
Enum Constant and Description |
---|
CUSTOM_STRING
String field with content handled by a custom handler.
|
DECIMAL_STRING
String field holding a decimal representation.
|
INTEGER_STRING
String field holding an integer representation.
|
STRING
String field.
|
Modifier and Type | Method and Description |
---|---|
static MField.FieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MField.FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MField.FieldType STRING
See MString
.
public static final MField.FieldType INTEGER_STRING
See MIntegerString
.
public static final MField.FieldType DECIMAL_STRING
See MDecimalString
.
public static final MField.FieldType CUSTOM_STRING
See MCustomString
.
public static MField.FieldType[] values()
for (MField.FieldType c : MField.FieldType.values()) System.out.println(c);
public static MField.FieldType 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 © 2016 Push Technology Ltd. All Rights Reserved.