Uses of Class
net.sf.ezmorph.MorpherRegistry
Packages that use MorpherRegistry
Package
Description
Base package
Morphers for JavaBeans and DynaBeans.
Morphers for Object types.
Miscellaneous utilities
-
Uses of MorpherRegistry in net.sf.ezmorph
Methods in net.sf.ezmorph with parameters of type MorpherRegistryModifier and TypeMethodDescriptionstatic 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 - '\0' Byte - (byte) 0 Short - (short) 0 Integer - 0 Long - 0L Float - 0f Double - 0d 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 - '\0' Byte - (byte) 0 Short - (short) 0 Integer - 0 Long - 0L Float - 0f Double - 0d 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 net.sf.ezmorph.bean
Methods in net.sf.ezmorph.bean that return MorpherRegistryMethods in net.sf.ezmorph.bean with parameters of type MorpherRegistryModifier and TypeMethodDescriptionorg.apache.commons.beanutils.DynaBeanMorphDynaClass.newInstance(MorpherRegistry morpherRegistry) voidMorphDynaBean.setMorpherRegistry(MorpherRegistry morpherRegistry) Constructors in net.sf.ezmorph.bean with parameters of type MorpherRegistryModifierConstructorDescriptionBeanMorpher(Class beanClass, MorpherRegistry morpherRegistry) BeanMorpher(Class beanClass, MorpherRegistry morpherRegistry, boolean lenient) MorphDynaBean(MorpherRegistry morpherRegistry) -
Uses of MorpherRegistry in net.sf.ezmorph.object
Constructors in net.sf.ezmorph.object with parameters of type MorpherRegistry -
Uses of MorpherRegistry in net.sf.json.util
Methods in net.sf.json.util that return MorpherRegistryModifier and TypeMethodDescriptionstatic MorpherRegistryJSONUtils.getMorpherRegistry()Returns the singleton MorpherRegistry.