Package ai.velr

Enum Class VelrValueType

All Implemented Interfaces:
Serializable, Comparable<VelrValueType>, Constable

public enum VelrValueType extends Enum<VelrValueType>
Public Velr property value kind.
  • Enum Constant Details

    • NULL

      public static final VelrValueType NULL
      Velr null value.
    • BOOL

      public static final VelrValueType BOOL
      Boolean value.
    • INT64

      public static final VelrValueType INT64
      64-bit integer value.
    • DOUBLE

      public static final VelrValueType DOUBLE
      Double-precision floating-point value.
    • STRING

      public static final VelrValueType STRING
      UTF-8 string value.
    • DATE

      public static final VelrValueType DATE
      Calendar date value.
    • LOCAL_TIME

      public static final VelrValueType LOCAL_TIME
      Local time value without a time zone.
    • ZONED_TIME

      public static final VelrValueType ZONED_TIME
      Time value with zone information.
    • LOCAL_DATETIME

      public static final VelrValueType LOCAL_DATETIME
      Local date-time value without a time zone.
    • ZONED_DATETIME

      public static final VelrValueType ZONED_DATETIME
      Date-time value with zone information.
    • DURATION

      public static final VelrValueType DURATION
      Duration value.
    • POINT

      public static final VelrValueType POINT
      Point value.
    • GEOMETRY

      public static final VelrValueType GEOMETRY
      Geometry value.
    • GEOGRAPHY

      public static final VelrValueType GEOGRAPHY
      Geography value.
    • LIST

      public static final VelrValueType LIST
      List value.
    • VECTOR

      public static final VelrValueType VECTOR
      Vector value.
    • BYTES

      public static final VelrValueType BYTES
      Binary value.
  • Method Details

    • values

      public static VelrValueType[] 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

      public static VelrValueType valueOf(String name)
      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 name
      NullPointerException - if the argument is null