Uses of Class
org.hibernate.type.LobType

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

Uses of LobType in org.hibernate.type
 

Classes in org.hibernate.type with type parameters of type LobType
 class AlternativeLobTypes<S,T extends LobType<S>>
          Provides alternative types for binding LOB values.
static class AlternativeLobTypes.BlobTypes<S,T extends LobType<S>>
          Provides alternative types for binding BLOB values.
static class AlternativeLobTypes.ClobTypes<S,T extends LobType<S>>
          Provides alternative types for binding CLOB values.
 

Subclasses of LobType in org.hibernate.type
 class BlobType
          A type that maps between BLOB and Blob
 class CharacterArrayClobType
          A type that maps between CLOB and Character[]

Essentially a MaterializedClobType but represented as a Character[] in Java rather than String.

 class ClobType
          A type that maps between CLOB and Clob
 class MaterializedBlobType
          A type that maps between BLOB and byte[]
 class MaterializedClobType
          A type that maps between CLOB and String
 class PrimitiveCharacterArrayClobType
          Map a char[] to a Clob
 class WrappedMaterializedBlobType
          A type that maps JDBC BLOB and Byte[].
 



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