Package com.gdblab.pathAlgebra.syntax
Class Function
- java.lang.Object
-
- com.gdblab.pathAlgebra.syntax.Function
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Function>
- Direct Known Subclasses:
Function.Complex,Function.Nested,Function.Simple
public abstract class Function extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<Function>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFunction.Complexstatic classFunction.Nestedstatic interfaceFunction.PartialVisitor<R>Partial visitor overFunctionwith a defaultFunction.PartialVisitor.otherwise(com.gdblab.pathAlgebra.syntax.Function)branch.static classFunction.Simplestatic interfaceFunction.Visitor<R>Visitor overFunction.
-
Field Summary
Fields Modifier and Type Field Description static NameCOMPLEXName of thecom.gdblab.pathAlgebra.syntax.Function.complexfield.static NameNESTEDName of thecom.gdblab.pathAlgebra.syntax.Function.nestedfield.static NameSIMPLEName of thecom.gdblab.pathAlgebra.syntax.Function.simplefield.static NameTYPE_Name of thecom.gdblab.pathAlgebra.syntax.Functiontype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(Function.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thecom.gdblab.pathAlgebra.syntax.Functiontype.
-
SIMPLE
public static final Name SIMPLE
Name of thecom.gdblab.pathAlgebra.syntax.Function.simplefield.
-
NESTED
public static final Name NESTED
Name of thecom.gdblab.pathAlgebra.syntax.Function.nestedfield.
-
COMPLEX
public static final Name COMPLEX
Name of thecom.gdblab.pathAlgebra.syntax.Function.complexfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(Function.Visitor<R> visitor)
Dispatch tovisitor.
-
-