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