public class BooleanTypeDescriptor extends AbstractTypeDescriptor<Boolean>
Boolean
handling.Modifier and Type | Field and Description |
---|---|
static BooleanTypeDescriptor |
INSTANCE |
Constructor and Description |
---|
BooleanTypeDescriptor() |
BooleanTypeDescriptor(char characterValueTrue,
char characterValueFalse) |
Modifier and Type | Method and Description |
---|---|
Boolean |
fromString(String string) |
Byte |
toByte(Boolean value) |
int |
toInt(Boolean value) |
Integer |
toInteger(Boolean value) |
Long |
toLong(Boolean value) |
Short |
toShort(Boolean value) |
String |
toString(Boolean value) |
<X> X |
unwrap(Boolean value,
Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type.
|
<X> Boolean |
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type.
|
areEqual, extractHashCode, extractLoggableRepresentation, getComparator, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrap
public static final BooleanTypeDescriptor INSTANCE
public BooleanTypeDescriptor()
public BooleanTypeDescriptor(char characterValueTrue, char characterValueFalse)
public <X> X unwrap(Boolean 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> Boolean wrap(X value, WrapperOptions options)
JavaTypeDescriptor
ResultSet
extraction.X
- The conversion type.value
- The value to wrap.options
- The optionspublic int toInt(Boolean value)
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.