Enum CustomFieldType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      NUMBER
      Can store numbers with 30 digits before and 10 digits after the comma.
      STRING
      Can store up to 2000 characters.
      TEXT
      Can store up to 2 GBytes of characters.
      TIMESTAMP
      Can store date and time information with a resolution of at least 1 second.
    • 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 using STRING fields 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.