|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.hibernate.type.descriptor.java.AbstractTypeDescriptor<T>
org.hibernate.type.descriptor.java.SerializableTypeDescriptor<T>
public class SerializableTypeDescriptor<T extends Serializable>
TODO : javadoc
| Nested Class Summary | |
|---|---|
static class |
SerializableTypeDescriptor.SerializableMutabilityPlan<S extends Serializable>
|
| Constructor Summary | |
|---|---|
SerializableTypeDescriptor(Class<T> type)
|
|
| Method Summary | ||
|---|---|---|
boolean |
areEqual(T one,
T another)
Determine if two instances are equal |
|
int |
extractHashCode(T value)
Extract a proper hash code for this value. |
|
protected T |
fromBytes(byte[] bytes)
|
|
T |
fromString(String string)
|
|
protected byte[] |
toBytes(T value)
|
|
String |
toString(T value)
|
|
|
unwrap(T value,
Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type. |
|
|
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type. |
|
| Methods inherited from class org.hibernate.type.descriptor.java.AbstractTypeDescriptor |
|---|
extractLoggableRepresentation, getComparator, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrap |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SerializableTypeDescriptor(Class<T> type)
| Method Detail |
|---|
public String toString(T value)
public T fromString(String string)
public boolean areEqual(T one,
T another)
AbstractTypeDescriptor
areEqual in interface JavaTypeDescriptor<T extends Serializable>areEqual in class AbstractTypeDescriptor<T extends Serializable>one - One instanceanother - The other instance
public int extractHashCode(T value)
AbstractTypeDescriptor
extractHashCode in interface JavaTypeDescriptor<T extends Serializable>extractHashCode in class AbstractTypeDescriptor<T extends Serializable>value - The value for which to extract a hash code.
public <X> X unwrap(T value,
Class<X> type,
WrapperOptions options)
JavaTypeDescriptorJavaTypeDescriptor<Integer> and we are asked to unwrap
the Integer value as a Long we would return something like
Long.valueOf( value.longValue() ).
Intended use is during PreparedStatement binding.
X - The conversion type.value - The value to unwraptype - The type as which to unwrapoptions - The options
public <X> T wrap(X value,
WrapperOptions options)
JavaTypeDescriptorResultSet extraction.
X - The conversion type.value - The value to wrap.options - The options
protected byte[] toBytes(T value)
protected T fromBytes(byte[] bytes)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||