Package org.openbase.jul.processing
Interface Processor<A,B>
-
- Type Parameters:
A
-B
-
- All Known Subinterfaces:
FileProcessor<A>
public interface Processor<A,B>
- Author:
- Divine Threepwood
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description A
deserialize(B b, A a)
B
serialize(A a, B b)
-
-
-
Method Detail
-
deserialize
A deserialize(B b, A a) throws CouldNotPerformException
- Throws:
CouldNotPerformException
-
serialize
B serialize(A a, B b) throws CouldNotPerformException
- Throws:
CouldNotPerformException
-
-