Uses of Class
org.hibernate.query.sqm.CastType
-
Packages that use CastType Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.metamodel.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.jdbc Defines handling of almost the full range of standard JDBC-defined SQL data types.org.hibernate.type.internal -
-
Uses of CastType in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type CastType Modifier and Type Method Description String
AbstractHANADialect. castPattern(CastType from, CastType to)
Deprecated, for removal: This API element is subject to removal in a future version.String
DB2Dialect. castPattern(CastType from, CastType to)
String
DerbyDialect. castPattern(CastType from, CastType to)
Derby does have a realTypes.BOOLEAN
type, but it doesn't know how to cast to it.String
Dialect. castPattern(CastType from, CastType to)
Obtain a pattern for the SQL equivalent to acast()
function call.String
DialectDelegateWrapper. castPattern(CastType from, CastType to)
String
H2Dialect. castPattern(CastType from, CastType to)
String
HSQLDialect. castPattern(CastType from, CastType to)
String
MySQLDialect. castPattern(CastType from, CastType to)
String
OracleDialect. castPattern(CastType from, CastType to)
type orTypes.TIME
type, and its default behavior for casting dates and timestamps to and from strings is just awful.String
PostgresPlusDialect. castPattern(CastType from, CastType to)
String
PostgreSQLDialect. castPattern(CastType from, CastType to)
String
SQLServerDialect. castPattern(CastType from, CastType to)
String
SybaseDialect. castPattern(CastType from, CastType to)
static String
BooleanDecoder. toBoolean(CastType from)
static String
BooleanDecoder. toInteger(CastType from)
static String
BooleanDecoder. toIntegerBoolean(CastType from)
static String
BooleanDecoder. toString(CastType from)
static String
BooleanDecoder. toTrueFalseBoolean(CastType from)
static String
BooleanDecoder. toYesNoBoolean(CastType from)
-
Uses of CastType in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return CastType Modifier and Type Method Description default CastType
JdbcMapping. getCastType()
-
Uses of CastType in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return CastType Modifier and Type Method Description static CastType
CastType. valueOf(String name)
Returns the enum constant of this type with the specified name.static CastType[]
CastType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of CastType in org.hibernate.type
Methods in org.hibernate.type that return CastType Modifier and Type Method Description CastType
AbstractStandardBasicType. getCastType()
-
Uses of CastType in org.hibernate.type.descriptor.jdbc
Methods in org.hibernate.type.descriptor.jdbc that return CastType Modifier and Type Method Description CastType
DoubleJdbcType. getCastType()
default CastType
JdbcType. getCastType()
static CastType
JdbcType. getCastType(int typeCode)
-
Uses of CastType in org.hibernate.type.internal
Methods in org.hibernate.type.internal that return CastType Modifier and Type Method Description CastType
ConvertedBasicTypeImpl. getCastType()
-