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
Modifier and TypeMethodDescriptionintgetIndex()Returns the index of this field.Returns the marshaller for this field.
-
Method Details
-
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.
-