1.0.0

org.eclipse.soda.dk.transform.service
Interface TransformService

All Known Implementing Classes:
IntegerDivideTransform, IntegerScaleTransform, IntegerTranslateTransform, MaximumTransform, MinimumTransform, ModTransform, NegativeTransform, NotTransform, ScaleTransform, ShiftTransform, Transforms, XorTransform

public interface TransformService

The TransformService interface defines the TransformService concept. A TransformService is used to change a value from a human readable value, to the appropriate bit encoding for a particular paramter. Operations such as Shifting, Scaling, and XOR are just a few of the possible transforms.

Version:
1.0.0
See Also:
IntegerScaleTransform, IntegerTranslateTransform, MaximumTransform, MinimumTransform, NegativeTransform, NotTransform, ShiftTransform, XorTransform

Method Summary
 java.lang.Object decode(java.lang.Object value)
          Perform the decode method and return the Object result.
 java.lang.Object encode(java.lang.Object value)
          Perform the encode method and return the Object result.
 

Method Detail

decode

java.lang.Object decode(java.lang.Object value)
Perform the decode method and return the Object result. This API takes the machine readable format and converts it into human readable format.

Parameters:
value - java.lang.Object
Returns:
Results of the decode (Object) value.

encode

java.lang.Object encode(java.lang.Object value)
Perform the encode method and return the Object result. This API takes the human readable format and converts it into machine readable format.

Parameters:
value - java.lang.Object
Returns:
Results of the encode (Object) value.

1.0.0

Copyright (c) 1999, 2007 IBM