ReadValueCallback<T,R> Interface
Type Parameters
- T
Input type of the callback.
- R
Output type of the callback.
public interface ReadValueCallback<T,R>
A callback used when reading an XML value, such as getNullableElement(ReadValueCallback<String,T> converter).
Method Summary
| Modifier and Type | Method and Description |
|---|---|
| abstract R |
read(T input)
Applies the read callback to the |
Method Details
read
public abstract R read(T input)
Applies the read callback to the input.
Parameters:
Returns:
Throws: