Class ReflectiveVisitor.PreEnterResult
- java.lang.Object
-
- org.neo4j.cypherdsl.core.internal.ReflectiveVisitor.PreEnterResult
-
- Enclosing class:
- ReflectiveVisitor
public static final class ReflectiveVisitor.PreEnterResult extends Object
This class is an indicator of what should happen after a new visitable has been identified.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReflectiveVisitor.PreEnterResultdelegateTo(Visitor handler)Enter to visit but delegate the visitationstatic ReflectiveVisitor.PreEnterResultdoEnter()Do enter and treat as usual.static ReflectiveVisitor.PreEnterResultskip()Skip the element completely.
-
-
-
Method Detail
-
doEnter
public static ReflectiveVisitor.PreEnterResult doEnter()
Do enter and treat as usual.- Returns:
- the result
-
skip
public static ReflectiveVisitor.PreEnterResult skip()
Skip the element completely.- Returns:
- the result
-
delegateTo
public static ReflectiveVisitor.PreEnterResult delegateTo(Visitor handler)
Enter to visit but delegate the visitation- Parameters:
handler- The delegate- Returns:
- the result
-
-