hmi.util
Interface Transform<S,T>

Type Parameters:
S - Type of Objects to be transformed
T - Type of result of transform

public interface Transform<S,T>

Transforms are objects that define a "mapping" from Objects to Object. They are used, for instance, by FilterSet, to define mappings on Sets. The transform could modify the Object "in place", or not. In both cases the modified Object must be returned.

Author:
Job Zwiers

Method Summary
 T transform(S obj)
          transform is the method that should transform S-typed Objects into T-typed Objects.
 

Method Detail

transform

T transform(S obj)
transform is the method that should transform S-typed Objects into T-typed Objects.