F - the from type (type which we want to convert from)T - the to type (type which we want to convert to)public interface Convertor<F,T>
| Modifier and Type | Method and Description |
|---|---|
F |
backwardConversion(T object)
Convert from object of T type to F type.
|
T |
forwardConversion(F object)
Convert from object of F type to T type.
|
Copyright © 2013 JBoss by Red Hat. All Rights Reserved.