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