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