public class OffsetTimeJavaDescriptor extends AbstractTypeDescriptor<java.time.OffsetTime>
| Modifier and Type | Field and Description |
|---|---|
static OffsetTimeJavaDescriptor |
INSTANCE
Singleton access
|
| Constructor and Description |
|---|
OffsetTimeJavaDescriptor() |
| Modifier and Type | Method and Description |
|---|---|
java.time.OffsetTime |
fromString(java.lang.String string) |
java.lang.String |
toString(java.time.OffsetTime value) |
<X> X |
unwrap(java.time.OffsetTime offsetTime,
java.lang.Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type.
|
<X> java.time.OffsetTime |
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type.
|
areEqual, extractHashCode, extractLoggableRepresentation, getComparator, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrappublic static final OffsetTimeJavaDescriptor INSTANCE
public java.lang.String toString(java.time.OffsetTime value)
public java.time.OffsetTime fromString(java.lang.String string)
public <X> X unwrap(java.time.OffsetTime offsetTime,
java.lang.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.offsetTime - The value to unwraptype - The type as which to unwrapoptions - The optionspublic <X> java.time.OffsetTime 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.