public class LocaleTypeDescriptor extends AbstractTypeDescriptor<Locale>
Locale
handling.Modifier and Type | Class and Description |
---|---|
static class |
LocaleTypeDescriptor.LocaleComparator |
Modifier and Type | Field and Description |
---|---|
static LocaleTypeDescriptor |
INSTANCE |
Constructor and Description |
---|
LocaleTypeDescriptor() |
Modifier and Type | Method and Description |
---|---|
Locale |
fromString(String string) |
Comparator<Locale> |
getComparator()
Retrieve the natural comparator for this type.
|
String |
toString(Locale value) |
<X> X |
unwrap(Locale value,
Class<X> type,
WrapperOptions options)
Unwrap an instance of our handled Java type into the requested type.
|
<X> Locale |
wrap(X value,
WrapperOptions options)
Wrap a value as our handled Java type.
|
areEqual, extractHashCode, extractLoggableRepresentation, getJavaTypeClass, getMutabilityPlan, unknownUnwrap, unknownWrap
public static final LocaleTypeDescriptor INSTANCE
public Comparator<Locale> getComparator()
JavaTypeDescriptor
getComparator
in interface JavaTypeDescriptor<Locale>
getComparator
in class AbstractTypeDescriptor<Locale>
public <X> X unwrap(Locale 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> Locale 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.