Interface Transformer
-
- All Known Implementing Classes:
AbstractTransformer,BigDecimalToString,BooleanToString,ComposedTransformer,DateToString,Identity,IntegerToLong,IntegerToString,LongToInteger,LongToString,StringToBigDecimal,StringToBoolean,StringToDate,StringToInteger,StringToLong
@Internal public interface Transformer
A Transformer is responsible of transforming an object into a different object
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objecttransform(java.lang.Object anObject)Transforms anObject into a different object
-
-
-
Method Detail
-
transform
java.lang.Object transform(java.lang.Object anObject)
Transforms anObject into a different object- Parameters:
anObject- the object to be transformed- Returns:
- the transformed object
- Throws:
ActivitiException- if the transformation could not be applied
-
-