Package io.protostuff.runtime
Interface FieldMap<T>
-
- All Known Implementing Classes:
ArrayFieldMap
,HashFieldMap
,RuntimeSchema
interface FieldMap<T>
Interface for map of fields - defines how to you get field by name or number (tag).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Field<T>
getFieldByName(java.lang.String fieldName)
Field<T>
getFieldByNumber(int n)
int
getFieldCount()
java.util.List<Field<T>>
getFields()
-