Interface Field<T>
-
- Type Parameters:
T- the type of the associated marshaller
- All Known Implementing Classes:
AnyField,ClassField,LoadedClassField
public interface Field<T>A field of a marshaller.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetIndex()Returns the index of this field.FieldMarshaller<T>getMarshaller()Returns the marshaller for this field.
-
-
-
Method Detail
-
getIndex
int getIndex()
Returns the index of this field.- Returns:
- the index of this field.
-
getMarshaller
FieldMarshaller<T> getMarshaller()
Returns the marshaller for this field.- Returns:
- the marshaller for this field.
-
-