Enum Class CustomFieldType

java.lang.Object
java.lang.Enum<CustomFieldType>
ch.ivyteam.ivy.workflow.custom.field.CustomFieldType
All Implemented Interfaces:
Serializable, Comparable<CustomFieldType>, java.lang.constant.Constable

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
    Can store numbers with 30 digits before and 10 digits after the comma.
    Can store up to 2000 characters.
    Can store up to 2 GBytes of characters.
    Can store date and time information with a resolution of at least 1 second.
  • Method Summary

    Modifier and Type
    Method
    Description
    The type of the value that is supported by this field.
  • Enum Constant Details

    • 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 Java.
    • TEXT

      public static final CustomFieldType TEXT
      Can store up to 2 GBytes of characters. Has bad search and filter performance, consider using STRING fields instead.
      API:
      This public API is available in Java.
    • 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 Java.
    • 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 Java.
  • Method Details

    • 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 Java.