public class TimeZoneTypeDescriptor extends AbstractTypeDescriptor<TimeZone>
Descriptor for TimeZone handling.
| Modifier and Type | Class and Description |
|---|---|
static class |
TimeZoneTypeDescriptor.TimeZoneComparator |
| Modifier and Type | Field and Description |
|---|---|
static TimeZoneTypeDescriptor |
INSTANCE |
| Constructor and Description |
|---|
TimeZoneTypeDescriptor() |
| Modifier and Type | Method and Description |
|---|---|
TimeZone |
fromString(String string) |
Comparator<TimeZone> |
getComparator()
Retrieve the natural comparator for this type.
|
String |
toString(TimeZone value) |
<X> X |
unwrap(TimeZone value,
Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type.
|
<X> TimeZone |
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type.
|
areEqual, extractHashCode, extractLoggableRepresentation, getJavaType, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrapclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetJdbcRecommendedSqlTypepublic static final TimeZoneTypeDescriptor INSTANCE
public Comparator<TimeZone> getComparator()
JavaTypeDescriptorRetrieve the natural comparator for this type.
getComparator in interface JavaTypeDescriptor<TimeZone>getComparator in class AbstractTypeDescriptor<TimeZone>public <X> X unwrap(TimeZone value, Class<X> type, WrapperOptions options)
JavaTypeDescriptorUnwrap an instance of our handled Java type into the requested type.
<p/>
As an example, if this is a JavaTypeDescriptor<Integer> and we are asked to unwrap
the Integer value as a Long we would return something like
<code>Long.valueOf( value.longValue() )</code>.
<p/>
Intended use is during PreparedStatement binding.
X - The conversion type.value - The value to unwraptype - The type as which to unwrapoptions - The optionspublic <X> TimeZone wrap(X value, WrapperOptions options)
JavaTypeDescriptorWrap a value as our handled Java type.
<p/>
Intended use is during ResultSet extraction.
X - The conversion type.value - The value to wrap.options - The optionsCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.