Package ai.velr

Enum Class CellType

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

public enum CellType extends Enum<CellType>
Runtime kind of a value returned in a Velr result row.
  • Enum Constant Details

    • NULL

      public static final CellType NULL
      Null value.
    • BOOL

      public static final CellType BOOL
      Boolean value.
    • INT64

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

      public static final CellType DOUBLE
      Double-precision floating-point value.
    • TEXT

      public static final CellType TEXT
      UTF-8 text value.
    • JSON

      public static final CellType JSON
      UTF-8 canonical JSON rendering of a richer Cypher value.
  • Method Details

    • values

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