Uses of Class
org.kordamp.ezmorph.MorpherRegistry
-
Packages that use MorpherRegistry Package Description org.kordamp.ezmorph org.kordamp.ezmorph.bean Morphers for JavaBeans and DynaBeans.org.kordamp.ezmorph.object Morphers for Object types. -
-
Uses of MorpherRegistry in org.kordamp.ezmorph
Methods in org.kordamp.ezmorph with parameters of type MorpherRegistry Modifier and Type Method Description static voidMorphUtils. registerStandardMorphers(MorpherRegistry morpherRegistry)Clears and registers all standard morpehrs.static voidMorphUtils. registerStandardObjectArrayMorphers(MorpherRegistry morpherRegistry)Registers morphers for arrays of wrappers and String with standard default values.
Boolean - Boolean.FALSE Character - new Character('\0') Byte - new Byte((byte) 0) Short - new Short((short) 0) Integer - new Integer(0) Long - new Long(0) Float - new Float(0) Double - new Double(0) String - null BigInteger - BigInteger.ZERO BigDecimal - MorphUtils.BIGDECIMAL_ZEROstatic voidMorphUtils. registerStandardObjectMorphers(MorpherRegistry morpherRegistry)Registers morphers for wrappers and String with standard default values.
Boolean - Boolean.FALSE Character - new Character('\0') Byte - new Byte((byte) 0) Short - new Short((short) 0) Integer - new Integer(0) Long - new Long(0) Float - new Float(0) Double - new Double(0) String - null BigInteger - BigInteger.ZERO BigDecimal - MorphUtils.BIGDECIMAL_ZEROstatic voidMorphUtils. registerStandardPrimitiveArrayMorphers(MorpherRegistry morpherRegistry)Registers morphers for arrays of primitives with standard default values.
boolean - false char - '\0' byte - 0 short - 0 int - 0 long - 0 float - 0 double - 0static voidMorphUtils. registerStandardPrimitiveMorphers(MorpherRegistry morpherRegistry)Registers morphers for primitives with standard default values.
boolean - false char - '\0' byte - 0 short - 0 int - 0 long - 0 float - 0 double - 0 -
Uses of MorpherRegistry in org.kordamp.ezmorph.bean
Fields in org.kordamp.ezmorph.bean declared as MorpherRegistry Modifier and Type Field Description private MorpherRegistryBeanMorpher. morpherRegistryprivate MorpherRegistryMorphDynaBean. morpherRegistryMethods in org.kordamp.ezmorph.bean that return MorpherRegistry Modifier and Type Method Description MorpherRegistryMorphDynaBean. getMorpherRegistry()Methods in org.kordamp.ezmorph.bean with parameters of type MorpherRegistry Modifier and Type Method Description org.apache.commons.beanutils.DynaBeanMorphDynaClass. newInstance(MorpherRegistry morpherRegistry)voidMorphDynaBean. setMorpherRegistry(MorpherRegistry morpherRegistry)Constructors in org.kordamp.ezmorph.bean with parameters of type MorpherRegistry Constructor Description BeanMorpher(java.lang.Class<?> beanClass, MorpherRegistry morpherRegistry)BeanMorpher(java.lang.Class<?> beanClass, MorpherRegistry morpherRegistry, boolean lenient)MorphDynaBean(MorpherRegistry morpherRegistry) -
Uses of MorpherRegistry in org.kordamp.ezmorph.object
Fields in org.kordamp.ezmorph.object declared as MorpherRegistry Modifier and Type Field Description private MorpherRegistrySwitchingMorpher. morpherRegistryConstructors in org.kordamp.ezmorph.object with parameters of type MorpherRegistry Constructor Description SwitchingMorpher(java.util.Map<java.lang.Class<?>,java.lang.Class<?>> classMap, MorpherRegistry morpherRegistry)
-