public interface WalkFilter
| Modifier and Type | Method and Description |
|---|---|
boolean |
afterArray(java.lang.Object array,
FieldInfo fieldInfo)
Called after an array.
|
boolean |
afterCompound(java.lang.Object compound,
FieldInfo fieldInfo,
int elementIndex)
Called after a compound object.
|
boolean |
afterValue(java.lang.Object value,
FieldInfo fieldInfo,
int elementIndex)
Called after a simple value.
|
boolean |
beforeArray(java.lang.Object array,
FieldInfo fieldInfo)
Called before an array.
|
boolean |
beforeCompound(java.lang.Object compound,
FieldInfo fieldInfo,
int elementIndex)
Called before a compound object.
|
boolean |
beforeValue(java.lang.Object value,
FieldInfo fieldInfo,
int elementIndex)
Called before a simple (or an unset compound - i.e.
|
boolean beforeArray(java.lang.Object array,
FieldInfo fieldInfo)
array - Zserio array.fieldInfo - Array field info.boolean afterArray(java.lang.Object array,
FieldInfo fieldInfo)
array - Zserio array.fieldInfo - Array field info.boolean beforeCompound(java.lang.Object compound,
FieldInfo fieldInfo,
int elementIndex)
compound - Compound zserio object.fieldInfo - Compound field info.elementIndex - Element index in array or NOT_ELEMENT if the compound is not in array.boolean afterCompound(java.lang.Object compound,
FieldInfo fieldInfo,
int elementIndex)
compound - Compound zserio object.fieldInfo - Compound field info.elementIndex - Element index in array or NOT_ELEMENT if the compound is not in array.boolean beforeValue(java.lang.Object value,
FieldInfo fieldInfo,
int elementIndex)
value - Simple value.fieldInfo - Field info of the value.elementIndex - Element index in array or NOT_ELEMENT if the compound is not in array.boolean afterValue(java.lang.Object value,
FieldInfo fieldInfo,
int elementIndex)
value - Simple value.fieldInfo - Field info of the value.elementIndex - Element index in array or NOT_ELEMENT if the compound is not in array.Last updated 2025-10-02 14:26:25