public class AutomaticStringEnumTypeConverter extends Object implements TypeConverter<String,Enum>
This one automaticall converts between String ans any enum.
If you only want String-enum type conversion for specific enums, use StringEnumTypeConverter.
| Constructor and Description |
|---|
AutomaticStringEnumTypeConverter() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canConvert(Type realToType,
Type realDomainType)
Can this type converter handle conversions between the given transfer and domain object types?
|
Enum |
convert(String object,
SyntheticField domainField,
Object domainObject,
String... tags)
Convert a transfer object field value to the value for the domain object.
|
String |
reverse(Enum object,
SyntheticField toField,
Object toObject,
String... tags)
Convert a domain object field value to the value for the transfer object.
|
public boolean canConvert(Type realToType, Type realDomainType)
TypeConvertercanConvert in interface TypeConverter<String,Enum>realToType - real class for the type in the transfer objectrealDomainType - real class for the type in the domain objectpublic Enum convert(String object, SyntheticField domainField, Object domainObject, String... tags) throws JTransfoException
TypeConverterconvert in interface TypeConverter<String,Enum>object - object to convertdomainField - target domain fielddomainObject - target domain objecttags - tags which indicate which fields can be converted based on MapOnly annotations.JTransfoException - problem during type conversionpublic String reverse(Enum object, SyntheticField toField, Object toObject, String... tags) throws JTransfoException
TypeConverterreverse in interface TypeConverter<String,Enum>object - object to converttoField - target transfer object fieldtoObject - target transfer objecttags - tags which indicate which fields can be converted based on MapOnly annotations.JTransfoException - problem during type conversionCopyright © 2017. All rights reserved.