public class JdbcTimeTypeDescriptor extends AbstractTypeDescriptor<Date>
Time
handling.Modifier and Type | Class and Description |
---|---|
static class |
JdbcTimeTypeDescriptor.TimeMutabilityPlan |
Modifier and Type | Field and Description |
---|---|
static JdbcTimeTypeDescriptor |
INSTANCE |
static String |
TIME_FORMAT |
Constructor and Description |
---|
JdbcTimeTypeDescriptor() |
Modifier and Type | Method and Description |
---|---|
boolean |
areEqual(Date one,
Date another)
Determine if two instances are equal
|
int |
extractHashCode(Date value)
Extract a proper hash code for this value.
|
Date |
fromString(String string) |
String |
toString(Date value) |
<X> X |
unwrap(Date value,
Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type.
|
<X> Date |
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type.
|
extractLoggableRepresentation, getComparator, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrap
public static final JdbcTimeTypeDescriptor INSTANCE
public static final String TIME_FORMAT
public int extractHashCode(Date value)
JavaTypeDescriptor
extractHashCode
in interface JavaTypeDescriptor<Date>
extractHashCode
in class AbstractTypeDescriptor<Date>
value
- The value for which to extract a hash code.public boolean areEqual(Date one, Date another)
JavaTypeDescriptor
areEqual
in interface JavaTypeDescriptor<Date>
areEqual
in class AbstractTypeDescriptor<Date>
one
- One instanceanother
- The other instancepublic <X> X unwrap(Date 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> Date wrap(X value, WrapperOptions options)
JavaTypeDescriptor
ResultSet
extraction.X
- The conversion type.value
- The value to wrap.options
- The optionsCopyright © 2001-2017 Red Hat, Inc. All Rights Reserved.