Package io.ebean.config.dbplatform
Interface ExtraDbTypes
-
- All Known Implementing Classes:
DbPlatformType
,MySqlBlob
,MySqlClob
public interface ExtraDbTypes
Integer codes for the extra types beyond java.sql.Types.
-
-
Field Summary
Fields Modifier and Type Field Description static int
CIDR
static int
HSTORE
Type to map Map content to Postgres HSTORE.static int
INET
static int
JSON
Type to map JSON content to Clob or Postgres JSON type.static int
JSONB
Type to map JSON content to Clob or Postgres JSONB type.static int
JSONBlob
Type to map JSON content to Blob.static int
JSONClob
Type to map JSON content to Clob.static int
JSONVarchar
Type to map JSON content to VARCHAR.static int
LINESTRING
Geo Pointstatic int
MULTILINESTRING
Geo MultiPolygonstatic int
MULTIPOINT
Geo MultiPolygonstatic int
MULTIPOLYGON
Geo MultiPolygonstatic int
POINT
Geo Pointstatic int
POLYGON
Geo Polygonstatic int
UUID
DB native UUID type (H2 and Postgres).
-
-
-
Field Detail
-
UUID
static final int UUID
DB native UUID type (H2 and Postgres).- See Also:
- Constant Field Values
-
HSTORE
static final int HSTORE
Type to map Map content to Postgres HSTORE.- See Also:
- Constant Field Values
-
JSON
static final int JSON
Type to map JSON content to Clob or Postgres JSON type.- See Also:
- Constant Field Values
-
JSONB
static final int JSONB
Type to map JSON content to Clob or Postgres JSONB type.- See Also:
- Constant Field Values
-
JSONVarchar
static final int JSONVarchar
Type to map JSON content to VARCHAR.- See Also:
- Constant Field Values
-
JSONClob
static final int JSONClob
Type to map JSON content to Clob.- See Also:
- Constant Field Values
-
JSONBlob
static final int JSONBlob
Type to map JSON content to Blob.- See Also:
- Constant Field Values
-
INET
static final int INET
- See Also:
- Constant Field Values
-
CIDR
static final int CIDR
- See Also:
- Constant Field Values
-
POINT
static final int POINT
Geo Point- See Also:
- Constant Field Values
-
POLYGON
static final int POLYGON
Geo Polygon- See Also:
- Constant Field Values
-
LINESTRING
static final int LINESTRING
Geo Point- See Also:
- Constant Field Values
-
MULTIPOINT
static final int MULTIPOINT
Geo MultiPolygon- See Also:
- Constant Field Values
-
MULTIPOLYGON
static final int MULTIPOLYGON
Geo MultiPolygon- See Also:
- Constant Field Values
-
MULTILINESTRING
static final int MULTILINESTRING
Geo MultiPolygon- See Also:
- Constant Field Values
-
-