Uses of Class
org.hibernate.type.NullableType

Packages that use NullableType
org.hibernate This package defines the central Hibernate APIs. 
org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

Uses of NullableType in org.hibernate
 

Fields in org.hibernate declared as NullableType
static NullableType Hibernate.BIG_DECIMAL
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.BIG_INTEGER
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.BINARY
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.BOOLEAN
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.BYTE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.CALENDAR
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.CALENDAR_DATE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.CHAR_ARRAY
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.CHARACTER
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.CHARACTER_ARRAY
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.CLASS
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.CURRENCY
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.DATE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.DOUBLE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.FLOAT
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.IMAGE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.INTEGER
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.LOCALE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.LONG
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.MATERIALIZED_BLOB
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.MATERIALIZED_CLOB
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.SERIALIZABLE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.SHORT
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.STRING
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.TEXT
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.TIME
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.TIMESTAMP
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.TIMEZONE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.TRUE_FALSE
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.WRAPPER_BINARY
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
static NullableType Hibernate.YES_NO
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 

Uses of NullableType in org.hibernate.type
 

Subclasses of NullableType in org.hibernate.type
 class AbstractBynaryType
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 class AbstractCharArrayType
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 class AbstractLongBinaryType
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 class AbstractLongStringType
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 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 BinaryType
          binary: A type that maps an SQL VARBINARY to a Java byte[].
 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 CalendarDateType
          calendar_date: A type mapping for a Calendar object that represents a date.
 class CalendarType
          calendar: A type mapping for a Calendar object that represents a datetime.
 class CharacterArrayType
          Bridge Character[] and VARCHAR
 class CharacterType
          character: A type that maps an SQL CHAR(1) to a Java Character.
 class CharArrayType
          put char[] into VARCHAR
 class CharBooleanType
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 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 DateType
          date: A type that maps an SQL DATE to a Java Date.
 class DbTimestampType
          dbtimestamp: An extension of TimestampType which maps to the database's current timestamp, rather than the jvm's current timestamp.
 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 ImageType
          image: A type that maps an SQL LONGVARBINARY to Java byte[].
 class ImmutableType
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 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 MaterializedBlobType
          materialized_blob: A type that maps an SQL BLOB to Java byte[].
 class MaterializedClobType
          materialized_clob: A type that maps an SQL CLOB to a Java String.
 class MutableType
          Deprecated. see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5138
 class NumericBooleanType
          Maps interger database values to boolean java values.
 class PrimitiveType
          Superclass of primitive / primitive wrapper types.
 class SerializableType
          serializable: A type that maps an SQL VARBINARY to a serializable Java object.
 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 LONGVARCHAR to a Java String.
 class TimestampType
          timestamp: A type that maps an SQL TIMESTAMP to a Java java.util.Date or java.sql.Timestamp.
 class TimeType
          time: A type that maps an SQL TIME to a Java java.util.Date or java.sql.Time.
 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 WrappedMaterializedBlobType
          materialized_blob: A type that maps an SQL BLOB to Java Byte[].
 class WrapperBinaryType
           
 class YesNoType
          yes_no: A type that maps an SQL CHAR(1) to a Java Boolean.
 

Constructors in org.hibernate.type with parameters of type NullableType
AdaptedImmutableType(NullableType mutableType)
           
 



Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.