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 HibernateTypeis 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. -
-
Uses of CastType in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type CastType Modifier and Type Method Description StringAbstractHANADialect. castPattern(CastType from, CastType to)Deprecated, for removal: This API element is subject to removal in a future version.StringDB2Dialect. castPattern(CastType from, CastType to)StringDerbyDialect. castPattern(CastType from, CastType to)Derby does have a realTypes.BOOLEANtype, but it doesn't know how to cast to it.StringDialect. castPattern(CastType from, CastType to)Obtain a pattern for the SQL equivalent to acast()function call.StringDialectDelegateWrapper. castPattern(CastType from, CastType to)StringH2Dialect. castPattern(CastType from, CastType to)StringHSQLDialect. castPattern(CastType from, CastType to)StringMySQLDialect. castPattern(CastType from, CastType to)StringOracleDialect. castPattern(CastType from, CastType to)type orTypes.TIMEtype, and its default behavior for casting dates and timestamps to and from strings is just awful.StringPostgresPlusDialect. castPattern(CastType from, CastType to)StringPostgreSQLDialect. castPattern(CastType from, CastType to)StringSQLServerDialect. castPattern(CastType from, CastType to)StringSybaseDialect. castPattern(CastType from, CastType to)static StringBooleanDecoder. toBoolean(CastType from)static StringBooleanDecoder. toInteger(CastType from)static StringBooleanDecoder. toIntegerBoolean(CastType from)static StringBooleanDecoder. toString(CastType from)static StringBooleanDecoder. toTrueFalseBoolean(CastType from)static StringBooleanDecoder. 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 CastTypeJdbcMapping. getCastType() -
Uses of CastType in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return CastType Modifier and Type Method Description static CastTypeCastType. 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 CastTypeAbstractStandardBasicType. 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 CastTypeDoubleJdbcType. getCastType()default CastTypeJdbcType. getCastType()static CastTypeJdbcType. getCastType(int typeCode)
-