Enum Class FieldType
- All Implemented Interfaces:
Serializable
,Comparable<FieldType>
,Constable
Defines the type of field for the definition of e.g. triggers or jobs
- Since:
- taskplanner 3.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA checkbox that allows the values 'true' and 'false' (as String)A color fieldA float fieldA date selection field.A file chooser that allows the selection of files.A file chooser that allows the selection of files or folders.An integer fieldA float fieldA file chooser that allows the selection of folder.A group nameA plain label.A link with an URL and a target definitionA fixed number rangeA password fieldA select field with a predefined set of possible valuesA select field which supports chunking behavior and custom renderersA select field which supports chunking behavior and custom renderers and multiple selectionA table with string key:value pairsA multiline text fieldA text fieldA time selection fieldA integer unit field with a unitA float field with a unit -
Method Summary
-
Enum Constant Details
-
SELECT
A select field with a predefined set of possible values -
SELECT_INPUT
A select field which supports chunking behavior and custom renderers -
SELECT_INPUT_MULTI
A select field which supports chunking behavior and custom renderers and multiple selection -
TEXTFIELD
A text field -
TEXTAREA
A multiline text field -
PASSWORD
A password field -
LINK
A link with an URL and a target definition -
GROUP
A group name -
LABEL
A plain label. Supports line breaks -
BOOLEAN
A checkbox that allows the values 'true' and 'false' (as String) -
FILE
A file chooser that allows the selection of files. Different protocols like 'file' and 'repo' can be set -
FOLDER
A file chooser that allows the selection of folder. Different protocols like 'file' and 'repo' can be set -
FILE_OR_FOLDER
A file chooser that allows the selection of files or folders. Different protocols like 'file' and 'repo' can be set -
DATE
A date selection field. -
TIME
A time selection field -
COLOR
A color field -
FIX_NUMBER
An integer field -
UNIT_FIX_NUMBER
A integer unit field with a unit -
FLOAT_NUMBER
A float field -
UNIT_FLOAT_NUMBER
A float field with a unit -
NUMBER_RANGE
A fixed number range -
CURRENCY
A float field -
STRING_TABLE
A table with string key:value pairs
-
-
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
-