Enum Class DbBoolean

java.lang.Object
java.lang.Enum<DbBoolean>
io.deephaven.sbe.standalone.gen.DbBoolean
All Implemented Interfaces:
Serializable, Comparable<DbBoolean>, java.lang.constant.Constable

public enum DbBoolean extends Enum<DbBoolean>
  • Enum Constant Details

    • FALSE

      public static final DbBoolean FALSE
    • TRUE

      public static final DbBoolean TRUE
    • NULL_BOOLEAN

      public static final DbBoolean NULL_BOOLEAN
    • NULL_VAL

      public static final DbBoolean NULL_VAL
      To be used to represent not present or null.
  • Method Details

    • values

      public static DbBoolean[] 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 DbBoolean 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
    • value

      public byte value()
    • get

      public static DbBoolean get(byte value)