Uses of Interface
net.sf.ezmorph.ObjectMorpher
-
Packages that use ObjectMorpher Package Description net.sf.ezmorph.array Morphers for arrays.net.sf.ezmorph.bean Morphers for JavaBeans and DynaBeans.net.sf.ezmorph.object Morphers for Object types. -
-
Uses of ObjectMorpher in net.sf.ezmorph.array
Classes in net.sf.ezmorph.array that implement ObjectMorpher Modifier and Type Class Description classAbstractArrayMorpherBase class for array Morphers.classBooleanArrayMorpherMorphs an array to a boolean[].classBooleanObjectArrayMorpherMorphs an array to a Boolean[].classByteArrayMorpherMorphs an array to a byte[].classCharacterObjectArrayMorpherMorphs an array to a Character[].classCharArrayMorpherMorphs an array to a char[].classDoubleArrayMorpherMorphs an array to a double[].classFloatArrayMorpherMorphs an array to a float[].classIntArrayMorpherMorphs an array to a int[].classLongArrayMorpherMorphs an array to a long[].classObjectArrayMorpherMorphs an array to another array using a Morpher.classShortArrayMorpherMorphs an array to a short[]. -
Uses of ObjectMorpher in net.sf.ezmorph.bean
Classes in net.sf.ezmorph.bean that implement ObjectMorpher Modifier and Type Class Description classBeanMorpherConverts a JavaBean into another JavaBean or DynaBean.
This Morpher will try to match every property from the target JavaBean's class to the properties of the source JavaBean. -
Uses of ObjectMorpher in net.sf.ezmorph.object
Classes in net.sf.ezmorph.object that implement ObjectMorpher Modifier and Type Class Description classAbstractObjectMorpherBase class for ObjectMorpher implementations.classBigDecimalMorpherMorphs to a BigDecimal.classBigIntegerMorpherMorphs to a BigInteger.classBooleanObjectMorpherMorphs to a Boolean.classCharacterObjectMorpherMorphs to a Character.classClassMorpherMorphs to a Class.
This morpher is a singleton.classDateMorpherMorphs a String to a Date.classIdentityObjectMorpherMorpher that performs no conversion.
This morpher is a singleton.classMapToDateMorpherMorphs a Map into a Date.
The Map should have at least one of the following keys [yer,month,day,hour,minutes,seconds,milliseconds] and the values should be instances of Number.classNumberMorpherMorphs to a subclass of Number.
Supported types are - Byte, Short, Integer, Long, Float, BigInteger, BigtDecimal.classObjectListMorpherMorphs a List to another List using a Morpher.classStringMorpherMorphs to a String.
This morpher is a singleton.classSwitchingMorpherAn all-purpose Morpher that can morph to several classes.
Because this Morpher accepts any class and morphs to Object it should not be added to a MorpherRegistry as it may be too generic for some cases and may result in unwanted transformations.
-