Uses of Interface
net.sf.ezmorph.Morpher

Packages that use Morpher
net.sf.ezmorph  
net.sf.ezmorph.array Morphers for arrays. 
net.sf.ezmorph.bean Morphers for JavaBeans and DynaBeans. 
net.sf.ezmorph.object Morphers for Object types. 
net.sf.ezmorph.primitive Morphers for primitive types. 
 

Uses of Morpher in net.sf.ezmorph
 

Subinterfaces of Morpher in net.sf.ezmorph
 interface ObjectMorpher
          Marker interface for morphers that return an Object.
 

Methods in net.sf.ezmorph that return Morpher
 Morpher MorpherRegistry.getMorpherFor(Class clazz)
          Returns a morpher for clazz.
 Morpher[] MorpherRegistry.getMorphersFor(Class clazz)
          Returns all morphers for clazz.
 

Methods in net.sf.ezmorph with parameters of type Morpher
 void MorpherRegistry.deregisterMorpher(Morpher morpher)
          Deregister the specified Morpher.
 void MorpherRegistry.registerMorpher(Morpher morpher)
          Register a Morpher for a target Class.
 void MorpherRegistry.registerMorpher(Morpher morpher, boolean override)
          Register a Morpher for a target Class.
 

Uses of Morpher in net.sf.ezmorph.array
 

Classes in net.sf.ezmorph.array that implement Morpher
 class AbstractArrayMorpher
          Base class for array Morphers.
 class BooleanArrayMorpher
          Morphs an array to a boolean[].
 class BooleanObjectArrayMorpher
          Morphs an array to a Boolean[].
 class ByteArrayMorpher
          Morphs an array to a byte[].
 class CharacterObjectArrayMorpher
          Morphs an array to a Character[].
 class CharArrayMorpher
          Morphs an array to a char[].
 class DoubleArrayMorpher
          Morphs an array to a double[].
 class FloatArrayMorpher
          Morphs an array to a float[].
 class IntArrayMorpher
          Morphs an array to a int[].
 class LongArrayMorpher
          Morphs an array to a long[].
 class ObjectArrayMorpher
          Morphs an array to another array using a Morpher.
 class ShortArrayMorpher
          Morphs an array to a short[].
 

Constructors in net.sf.ezmorph.array with parameters of type Morpher
ObjectArrayMorpher(Morpher morpher)
          Creates a new ArrayMorpher which will use another Morpher for its inner type.
 

Uses of Morpher in net.sf.ezmorph.bean
 

Classes in net.sf.ezmorph.bean that implement Morpher
 class BeanMorpher
          Converts a JavaBean into another JavaBean or DynaBean.
 

Uses of Morpher in net.sf.ezmorph.object
 

Classes in net.sf.ezmorph.object that implement Morpher
 class AbstractObjectMorpher
          Base class for ObjectMorpher implementations.
 class BigDecimalMorpher
          Morphs to a BigDecimal.
 class BigIntegerMorpher
          Morphs to a BigInteger.
 class BooleanObjectMorpher
          Morphs to a Boolean.
 class CharacterObjectMorpher
          Morphs to a Character.
 class ClassMorpher
          Morphs to a Class.
 class DateMorpher
          Morphs a String to a Date.
 class IdentityObjectMorpher
          Morpher that performs no conversion.
 class NumberMorpher
          Morphs to a subclass of Number.
 class StringMorpher
          Morphs to a String.
 

Uses of Morpher in net.sf.ezmorph.primitive
 

Classes in net.sf.ezmorph.primitive that implement Morpher
 class AbstractDecimalMorpher
          Base class for primitive decimal conversion.
 class AbstractIntegerMorpher
          Base class por primitive integer conversion.
 class AbstractPrimitiveMorpher
          Base class for primitive value conversion.
 class BooleanMorpher
          Morphs to a boolean.
 class ByteMorpher
          Morphs to a byte.
 class CharMorpher
          Morphs to a char.
 class DoubleMorpher
          Morphs to a double.
 class FloatMorpher
          Moprhs to a float.
 class IntMorpher
          Morphs to an int.
 class LongMorpher
          Morphs to a long.
 class ShortMorpher
          Morphs to a short.
 



Copyright © 2006-2007 null. All Rights Reserved.