net.sf.collections15
Interface Transformer<I,O>

All Known Implementing Classes:
ChainedTransformer, CloneTransformer, ClosureTransformer, ConstantTransformer, ExceptionTransformer, FactoryTransformer, InstantiateTransformer, InvokerTransformer, MapTransformer, NOPTransformer, PredicateTransformer, StringValueTransformer, SwitchTransformer

public interface Transformer<I,O>

Defines a functor interface implemented by classes that transform one object into another.

A Transformer converts the input object to the output object. The input object should be left unchanged. Transformers are typically used for type conversions, or extracting data from an object.

Standard implementations of common transformers are provided by TransformerUtils. These include method invokation, returning a constant, cloning and returning the string value.

Since:
Commons Collections15 1.0
Version:
$Revision: 1.2 $ $Date: 2004/10/17 01:02:42 $
Author:
James Strachan, Stephen Colebourne

Method Summary
 O transform(I input)
          Transforms the input object (leaving it unchanged) into some output object.
 

Method Detail

transform

O transform(I input)
Transforms the input object (leaving it unchanged) into some output object.

Parameters:
input - the object to be transformed, should be left unchanged
Returns:
a transformed object
Throws:
java.lang.ClassCastException - (runtime) if the input is the wrong class
java.lang.IllegalArgumentException - (runtime) if the input is invalid
FunctorException - (runtime) if the transform cannot be completed


Copyright © 2001-2005 SourceForge.net. All Rights Reserved.