public class LocalTimeJavaDescriptor extends AbstractTypeDescriptor<LocalTime>
Modifier and Type | Field and Description |
---|---|
static LocalTimeJavaDescriptor |
INSTANCE
Singleton access
|
Constructor and Description |
---|
LocalTimeJavaDescriptor() |
Modifier and Type | Method and Description |
---|---|
LocalTime |
fromString(String string) |
String |
toString(LocalTime value) |
<X> X |
unwrap(LocalTime value,
Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type.
|
<X> LocalTime |
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type.
|
areEqual, extractHashCode, extractLoggableRepresentation, getComparator, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrap
public static final LocalTimeJavaDescriptor INSTANCE
public <X> X unwrap(LocalTime value, Class<X> type, WrapperOptions options)
JavaTypeDescriptor
JavaTypeDescriptor<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> LocalTime wrap(X value, WrapperOptions options)
JavaTypeDescriptor
ResultSet
extraction.X
- The conversion type.value
- The value to wrap.options
- The optionsCopyright © 2017 JBoss by Red Hat. All rights reserved.