Package org.azd.enums
Enum Class FieldType
- All Implemented Interfaces:
Serializable
,Comparable<FieldType>
,Constable
The type of the field.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionBoolean field type.Datetime field type.Double field type.Guid field type.History field type.HTML (Multiline) field type.Identity field type.Integer field type.Double picklist field type.Integer picklist field type.String picklist field type.Plain text field type.String field type.Treepath field type. -
Method Summary
-
Enum Constant Details
-
BOOLEAN
Boolean field type. -
DATETIME
Datetime field type. -
DOUBLE
Double field type. -
GUID
Guid field type. -
HISTORY
History field type. -
HTML
HTML (Multiline) field type. -
IDENTITY
Identity field type. -
INTEGER
Integer field type. -
PICKLISTDOUBLE
Double picklist field type. When creating a double picklist field from REST API, use "Double" FieldType. -
PICKLISTINTEGER
Integer picklist field type. When creating a integer picklist field from REST API, use "Integer" FieldType. -
PICKLISTSTRING
String picklist field type. When creating a string picklist field from REST API, use "String" FieldType. -
PLAINTEXT
Plain text field type. -
STRING
String field type. -
TREEPATH
Treepath field type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-