Enum CustomFieldType
- java.lang.Object
-
- java.lang.Enum<CustomFieldType>
-
- ch.ivyteam.ivy.workflow.custom.field.CustomFieldType
-
- All Implemented Interfaces:
Serializable,Comparable<CustomFieldType>
public enum CustomFieldType extends Enum<CustomFieldType>
The type of a custom field- Since:
- 7.3
- API:
- This is a public API.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NUMBERCan store numbers with 30 digits before and 10 digits after the comma.STRINGCan store up to 2000 characters.TEXTCan store up to 2 GBytes of characters.TIMESTAMPCan store date and time information with a resolution of at least 1 second.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>valueType()The type of the value that is supported by this field.
-
-
-
Enum Constant Detail
-
STRING
public static final CustomFieldType STRING
Can store up to 2000 characters. Has fast search and filter performance.- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
TEXT
public static final CustomFieldType TEXT
Can store up to 2 GBytes of characters. Has bad search and filter performance, consider usingSTRINGfields instead.- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
NUMBER
public static final CustomFieldType NUMBER
Can store numbers with 30 digits before and 10 digits after the comma. Has fast search and filter performance.- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
TIMESTAMP
public static final CustomFieldType TIMESTAMP
Can store date and time information with a resolution of at least 1 second. Has fast search and filter performance.- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
-
Method Detail
-
valueType
public Class<?> valueType()
The type of the value that is supported by this field.- Returns:
- value type
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
-