Interface | Description |
---|---|
Converter |
Converts a source object into another type.
|
ConverterRegistry |
Registers
SupportingConverter s for later use. |
SupportingConverter |
Converter that is able to indicate if he is able to support a source object
or a target type.
|
Class | Description |
---|---|
DefaultConverter |
The default converter delegates conversion to registered
SupportingConverter s. |
DelegateConverter |
Calls registered
SupportingConverter s to make the real conversion. |
NoConversionNeededConverter |
A no-op converter that just casts the source to match the target type.
|
StringToArrayConverter |
Converts a string to an array of anything.
|
StringToBooleanConverter |
Converts a string to a boolean value.
|
StringToCharsetConverter |
Converts a string to a
Charset instance. |
StringToEnumConverter |
Converts a string to a
Enum value. |
StringToNumberConverter |
Converts a string to a number.
|
StringToURLConverter |
Converts a string to an
URL . |
Annotation Type | Description |
---|---|
StringToEnumConverter.FactoryMethod |
Idicates which method to use to instantiate the
Enum instead of
using Enum.valueOf(Class, String) . |
Copyright © 2021. All rights reserved.