| org.ontoware.rdf2go.util.Converter
Converter | public interface Converter (Code) | | Converts instances from one type to another.
Useful for implementing adapters.
author: sauermann < Parameters: FROM - > The class that is the source of conversion< Parameters: TO - > The class that is converted to |
Method Summary | |
public TO | convert(FROM source) |
convert | public TO convert(FROM source) throws ConversionException(Code) | | convert the passed object to the outgoing object
Parameters: source - the source object to convert the converted object throws: ConversionException - if something goes wrong. |
|
|