Uses of Interface
org.hibernate.type.DiscriminatorType

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

Uses of DiscriminatorType in org.hibernate.type
 

Classes in org.hibernate.type that implement DiscriminatorType
 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 CharacterType
          A type that maps between CHAR(1) and Character
 class CharBooleanType
          Deprecated. Use the AbstractStandardBasicType approach instead
 class CustomType
          Adapts UserType to the generic Type interface, in order to isolate user code from changes in the internal Type contracts.
 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 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-2012 Red Hat, Inc. All Rights Reserved.