Enum FieldType
- java.lang.Object
-
- java.lang.Enum<FieldType>
-
- com.netgrif.application.engine.petrinet.domain.dataset.FieldType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANBUTTONCASE_REFDATEDATETIMEENUMERATIONENUMERATION_MAPFILEFILELISTFILTERI18NMULTICHOICEMULTICHOICE_MAPNUMBERTABULARTASK_REFTEXTUSERUSERLIST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FieldType$INIT(java.lang.Object... para)static FieldTypefromString(java.lang.String name)groovy.lang.MetaClassgetMetaClass()java.lang.StringgetName()FieldTypenext()FieldTypeprevious()voidsetMetaClass(groovy.lang.MetaClass mc)voidsetName(java.lang.String value)static FieldTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEXT
public static final FieldType TEXT
-
DATE
public static final FieldType DATE
-
BOOLEAN
public static final FieldType BOOLEAN
-
FILE
public static final FieldType FILE
-
FILELIST
public static final FieldType FILELIST
-
ENUMERATION
public static final FieldType ENUMERATION
-
ENUMERATION_MAP
public static final FieldType ENUMERATION_MAP
-
MULTICHOICE
public static final FieldType MULTICHOICE
-
MULTICHOICE_MAP
public static final FieldType MULTICHOICE_MAP
-
NUMBER
public static final FieldType NUMBER
-
USER
public static final FieldType USER
-
USERLIST
public static final FieldType USERLIST
-
TABULAR
public static final FieldType TABULAR
-
CASE_REF
public static final FieldType CASE_REF
-
DATETIME
public static final FieldType DATETIME
-
BUTTON
public static final FieldType BUTTON
-
TASK_REF
public static final FieldType TASK_REF
-
FILTER
public static final FieldType FILTER
-
I18N
public static final FieldType I18N
-
-
Method Detail
-
values
public static FieldType[] 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 (FieldType c : FieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldType 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
-
getMetaClass
public groovy.lang.MetaClass getMetaClass()
- Specified by:
getMetaClassin interfacegroovy.lang.GroovyObject
-
setMetaClass
public void setMetaClass(groovy.lang.MetaClass mc)
- Specified by:
setMetaClassin interfacegroovy.lang.GroovyObject
-
setName
public void setName(java.lang.String value)
-
fromString
public static FieldType fromString(java.lang.String name)
-
getName
public java.lang.String getName()
-
next
public FieldType next()
-
previous
public FieldType previous()
-
$INIT
public static final FieldType $INIT(java.lang.Object... para)
-
-