DATATYPE
- The data type to be visited@FunctionalInterface public interface IHierarchyVisitor<DATATYPE>
Modifier and Type | Method and Description |
---|---|
void |
visit(DATATYPE aStartObject,
boolean bInvokeOnStartObject)
Visit all objects, starting specified one.
|
void visit(@Nullable DATATYPE aStartObject, boolean bInvokeOnStartObject)
aStartObject
- The object to start from. May be null
to indicate the
hierarchy root.bInvokeOnStartObject
- true
to indicate that the callback should also be
invoked on the first element, false
to indicate that
the callback should only be invoked for the children of the passed
element.Copyright © 2014–2019 Philip Helger. All rights reserved.