Options
All
  • Public
  • Public/Protected
  • All
Menu

SqlColumnType represents the datatype of a SqlColumnMetadata.

Index

Enumeration members

BIGINT = 5

BIGINT type, represented by long.

BOOLEAN = 1

BOOLEAN type, represented by boolean.

DATE = 9

DATE type, represented by LocalDate.

DECIMAL = 6

DECIMAL type, represented by BigDecimal.

DOUBLE = 8

DOUBLE type, represented by number.

INTEGER = 4

INTEGER type, represented by number.

JSON = 15

JSON type, represented by HazelcastJsonValue and JS objects

NULL = 14

The type of the generic SQL NULL literal. The only valid value of NULL type is null.

OBJECT = 13

OBJECT type, could be represented by any class.

REAL = 7

REAL type, represented by number.

SMALLINT = 3

SMALLINT type, represented by number.

TIME = 10

TIME type, represented by LocalTime.

TIMESTAMP = 11

TIMESTAMP type, represented by LocalDateTime.

TIMESTAMP_WITH_TIME_ZONE = 12

TIMESTAMP_WITH_TIME_ZONE type, represented by OffsetDateTime.

TINYINT = 2

TINYINT type, represented by number.

VARCHAR = 0

VARCHAR type, represented by string.

Generated using TypeDoc