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