Interface FieldSetReader<T>
- Type Parameters:
T- the field set type
public interface FieldSetReader<T>
Reads a value from a set of fields.
- Author:
- Paul Ferraro
-
Method Summary
-
Method Details
-
readField
Reads a value from a field of a field set.- Parameters:
current- the current field value- Returns:
- the updated value.
- Throws:
IOException- if the value could not be read.
-
contains
boolean contains(int index) Indicates whether or not the specified index in contained in this field set.- Parameters:
index- a field index- Returns:
- true, if the specified index in contained in this field set, false otherwise.
-