Package | Description |
---|---|
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
Modifier and Type | Class and Description |
---|---|
class |
BigIntegerType
A type that maps between a
NUMERIC and BigInteger . |
class |
BooleanType
A type that maps between
BOOLEAN and Boolean |
class |
ByteType
A type that maps between
TINYINT and Byte |
class |
CharacterNCharType
A type that maps between
NCHAR(1) and Character |
class |
CharacterType
A type that maps between
CHAR(1) and Character |
class |
CustomType
|
class |
IntegerType
A type that maps between
INTEGER and @link Integer} |
class |
LongType
A type that maps between
BIGINT and Long |
class |
NumericBooleanType
A type that maps between
INTEGER and Boolean (using 1 and 0) |
class |
ShortType
A type that maps between
SMALLINT and Short |
class |
StringNVarcharType
A type that maps between
VARCHAR and String |
class |
StringType
A type that maps between
VARCHAR and String |
class |
TrueFalseType
A type that maps between
CHAR(1) and Boolean (using 'T' and 'F') |
class |
UrlType
A type that maps between
VARCHAR and URL |
class |
YesNoType
A type that maps between
CHAR(1) and Boolean (using 'Y' and 'N') |
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.