Uses of Class
org.hibernate.type.ImmutableType

Packages that use ImmutableType
org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

Uses of ImmutableType in org.hibernate.type
 

Subclasses of ImmutableType in org.hibernate.type
 class AdaptedImmutableType
          Optimize a mutable type, if the user promises not to mutable the instances.
 class BigDecimalType
          big_decimal: A type that maps an SQL NUMERIC to a java.math.BigDecimal
 class BigIntegerType
          big_integer: A type that maps an SQL NUMERIC to a java.math.BigInteger
 class BooleanType
          boolean: A type that maps an SQL BIT to a Java Boolean.
 class ByteType
          byte: A type that maps an SQL TINYINT to a Java Byte.
 class CharacterType
          character: A type that maps an SQL CHAR(1) to a Java Character.
 class CharBooleanType
          Superclass for types that map Java boolean to SQL CHAR(1).
 class ClassType
          class: A type that maps an SQL VARCHAR to a Java Class.
 class CurrencyType
          currency: A type that maps an SQL VARCHAR to a java.util.Currency
 class DoubleType
          double: A type that maps an SQL DOUBLE to a Java Double.
 class FloatType
          float: A type that maps an SQL FLOAT to a Java Float.
 class IntegerType
          integer: A type that maps an SQL INT to a Java Integer.
 class LocaleType
          locale: A type that maps an SQL VARCHAR to a Java Locale.
 class LongType
          long: A type that maps an SQL BIGINT to a Java Long.
 class NumericBooleanType
          Maps interger database values to boolean java values.
 class PrimitiveType
          Superclass of primitive / primitive wrapper types.
 class ShortType
          short: A type that maps an SQL SMALLINT to a Java Short.
 class StringType
          string: A type that maps an SQL VARCHAR to a Java String.
 class TextType
          text: A type that maps an SQL CLOB to a Java String.
 class TimeZoneType
          timezone: A type that maps an SQL VARCHAR to a java.util.TimeZone
 class TrueFalseType
          true_false: A type that maps an SQL CHAR(1) to a Java Boolean.
 class YesNoType
          yes_no: A type that maps an SQL CHAR(1) to a Java Boolean.