public class ByteArrayTypeDescriptor extends AbstractTypeDescriptor<java.lang.Byte[]>
Byte[] handling.| Modifier and Type | Field and Description |
|---|---|
static ByteArrayTypeDescriptor |
INSTANCE |
| Constructor and Description |
|---|
ByteArrayTypeDescriptor() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
areEqual(java.lang.Byte[] one,
java.lang.Byte[] another)
Determine if two instances are equal
|
int |
extractHashCode(java.lang.Byte[] bytes)
Extract a proper hash code for this value.
|
java.lang.Byte[] |
fromString(java.lang.String string) |
java.util.Comparator<java.lang.Byte[]> |
getComparator()
Retrieve the natural comparator for this type.
|
java.lang.String |
toString(java.lang.Byte[] bytes) |
<X> X |
unwrap(java.lang.Byte[] value,
java.lang.Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type.
|
<X> java.lang.Byte[] |
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type.
|
extractLoggableRepresentation, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrappublic static final ByteArrayTypeDescriptor INSTANCE
public boolean areEqual(java.lang.Byte[] one,
java.lang.Byte[] another)
JavaTypeDescriptorareEqual in interface JavaTypeDescriptor<java.lang.Byte[]>areEqual in class AbstractTypeDescriptor<java.lang.Byte[]>one - One instanceanother - The other instancepublic int extractHashCode(java.lang.Byte[] bytes)
JavaTypeDescriptorextractHashCode in interface JavaTypeDescriptor<java.lang.Byte[]>extractHashCode in class AbstractTypeDescriptor<java.lang.Byte[]>bytes - The value for which to extract a hash code.public java.lang.String toString(java.lang.Byte[] bytes)
public java.lang.Byte[] fromString(java.lang.String string)
public java.util.Comparator<java.lang.Byte[]> getComparator()
JavaTypeDescriptorgetComparator in interface JavaTypeDescriptor<java.lang.Byte[]>getComparator in class AbstractTypeDescriptor<java.lang.Byte[]>public <X> X unwrap(java.lang.Byte[] value,
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.value - The value to unwraptype - The type as which to unwrapoptions - The optionspublic <X> java.lang.Byte[] 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.