- registerMorpher(Morpher) - Method in class org.kordamp.ezmorph.MorpherRegistry
-
Register a Morpher for a target Class
.
The target class is the class this Morpher morphs to.
- registerMorpher(Morpher, boolean) - Method in class org.kordamp.ezmorph.MorpherRegistry
-
Register a Morpher for a target Class
.
The target class is the class this Morpher morphs to.
- registerStandardMorphers(MorpherRegistry) - Static method in class org.kordamp.ezmorph.MorphUtils
-
Clears and registers all standard morpehrs.
- registerStandardObjectArrayMorphers(MorpherRegistry) - Static method in class org.kordamp.ezmorph.MorphUtils
-
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_ZERO
- registerStandardObjectMorphers(MorpherRegistry) - Static method in class org.kordamp.ezmorph.MorphUtils
-
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_ZERO
- registerStandardPrimitiveArrayMorphers(MorpherRegistry) - Static method in class org.kordamp.ezmorph.MorphUtils
-
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 - 0
- registerStandardPrimitiveMorphers(MorpherRegistry) - Static method in class org.kordamp.ezmorph.MorphUtils
-
Registers morphers for primitives with standard default values.
boolean - false
char - '\0'
byte - 0
short - 0
int - 0
long - 0
float - 0
double - 0
- remove(String, String) - Method in class org.kordamp.ezmorph.bean.MorphDynaBean
-