Morphing Objects
Morphing Objects is as easy as calling morph()
on a Morpher
or ObjectMorpher
. You may have noticed that Morpher
does not have a morph()
method but
ObjectMorpher
does, that is because
Morpher
is used on primitive Morphers too.
Example:
- int i = new IntMorpher().morph( "123" );
- assertEquals( 123, i );
-
- String str = new StringMorpher().morph( new Integer(123) );
- assertEquals( "123", str );
-
- Boolean[] bools = new ObjectArrayMorpher(
- new BooleanObjectMorpher() ).morph(
- new String[]{ "true", "false" } );
- assertEquals( Boolean.TRUE, bools[0] );
- assertEquals( Boolean.FALSE, bools[1] );
-
-
- DynaBean dynaBean = ...
- morpherRegistry.registerMorpher( new BeanMorpher( MyBean.class, morpherRegistry ) );
- MyBean myBean = (MyBean) morpherRegistry.moprh( MyBean.class, dynaBean );
-
-
- BeanA beanA = ...
- morpherRegistry.registerMorpher( new BeanMorpher( BeanB.class, morpherRegistry ) );
- BeanB beanB = (BeanB) morpherRegistry.morph( BeanB.class, beanA );
EZMorph comes with a handy class for working with
Morphers named MorpherRegistry
.
It works much like ConvertUtils
on commons-beanutils. This class is not a singleton
like ConvertUtils
,
so it is possible to have multiple registries with
different Morphers that support the same target
class, but take different default values or support
different source classes.
Another convenient class is MorphUtils
,
you can register standard Morphers to any
MorpherRegistry
with it.
Example:
- MorpherRegistry morperRegistry = new MorpherRegistry();
- MorphUtils.registerStandardMorphers( morpherRegistry );
- Integer i = (Integer) morpherRegistry.morph( Integer.class, "A" );
-
- assertEquals( new Integer(0), i );
Asserting array equality
Asserting array equality is very easy with
ArrayAssertions
, just call assertEquals
on it, and will try to see first if the arrays reffer to the same
location in memory, if not, it will compare them by value, iterating
through each dimension the arrays may have.
Here are the meat and bones of every assertEquals
:
- public static void assertEquals( String message, boolean[] expecteds, boolean[] actuals )
- {
- if( expecteds == actuals ){
- return;
- }
- String header = message == null ? "" : message + ": ";
- if( expecteds == null ){
- fail( header + "expected array was null" );
- }
- if( actuals == null ){
- fail( header + "actual array was null" );
- }
- if( actuals.length != expecteds.length ){
- fail( header + "array lengths differed, expected.length=" + expecteds.length
- + " actual.length=" + actuals.length );
- }
-
- for( int i = 0; i < expecteds.length; i++ ){
- assertEquals( header + "arrays first differed at element [" + i + "];", expecteds[i],
- actuals[i] );
- }
- }
assertEquals( Object[], Object[] )
is different, as it will inspect
the arrays for primitive contents and call the appropriate method.