Enum SqlColumnType

java.lang.Object
java.lang.Enum<SqlColumnType>
com.hazelcast.sql.SqlColumnType
All Implemented Interfaces:
Serializable, Comparable<SqlColumnType>, java.lang.constant.Constable

public enum SqlColumnType
extends Enum<SqlColumnType>
SQL column type.
  • Enum Constant Details

  • Method Details

    • values

      public static SqlColumnType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static SqlColumnType valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getById

      public static SqlColumnType getById​(int id)
      Returns the IndexType as an enum.
      Returns:
      the IndexType as an enum
    • getId

      public int getId()
      Gets the ID for the given SqlColumnType.
      Returns:
      the ID
    • getValueClass

      @Nonnull public Class<?> getValueClass()
      Gets the Java class of the value of this SQL type.
      Returns:
      the Java class of the value of this SQL type