public class EnumJavaTypeDescriptor<T extends Enum> extends AbstractTypeDescriptor<T>
| Constructor and Description | 
|---|
EnumJavaTypeDescriptor(Class<T> type)  | 
| Modifier and Type | Method and Description | 
|---|---|
T | 
fromName(String relationalForm)  | 
<E extends Enum> | 
fromOrdinal(Integer relationalForm)  | 
T | 
fromString(String string)  | 
String | 
toName(T domainForm)  | 
<E extends Enum> | 
toOrdinal(E domainForm)  | 
String | 
toString(T value)  | 
<X> X | 
unwrap(T value,
      Class<X> type,
      WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type. 
 | 
<X> T | 
wrap(X value,
    WrapperOptions options)
Wrap a value as our handled Java type. 
 | 
areEqual, extractHashCode, extractLoggableRepresentation, getComparator, getJavaType, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrapclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetJdbcRecommendedSqlTypepublic <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 optionspublic <X> T wrap(X value, WrapperOptions options)
JavaTypeDescriptorResultSet extraction.X - The conversion type.value - The value to wrap.options - The optionsCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.