Class PathPropertyRef
- java.lang.Object
-
- com.gdblab.pathAlgebra.expressions.PathPropertyRef
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PathPropertyRef>
- Direct Known Subclasses:
PathPropertyRef.EndNode,PathPropertyRef.Length,PathPropertyRef.StartNode
public abstract class PathPropertyRef extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<PathPropertyRef>
Reference to path-level properties: length, etc.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPathPropertyRef.EndNodestatic classPathPropertyRef.Lengthstatic interfacePathPropertyRef.PartialVisitor<R>Partial visitor overPathPropertyRefwith a defaultPathPropertyRef.PartialVisitor.otherwise(com.gdblab.pathAlgebra.expressions.PathPropertyRef)branch.static classPathPropertyRef.StartNodestatic interfacePathPropertyRef.Visitor<R>Visitor overPathPropertyRef.
-
Field Summary
Fields Modifier and Type Field Description static NameEND_NODEName of thecom.gdblab.pathAlgebra.expressions.PathPropertyRef.endNodefield.static NameLENGTHName of thecom.gdblab.pathAlgebra.expressions.PathPropertyRef.lengthfield.static NameSTART_NODEName of thecom.gdblab.pathAlgebra.expressions.PathPropertyRef.startNodefield.static NameTYPE_Name of thecom.gdblab.pathAlgebra.expressions.PathPropertyReftype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(PathPropertyRef.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thecom.gdblab.pathAlgebra.expressions.PathPropertyReftype.
-
LENGTH
public static final Name LENGTH
Name of thecom.gdblab.pathAlgebra.expressions.PathPropertyRef.lengthfield.
-
START_NODE
public static final Name START_NODE
Name of thecom.gdblab.pathAlgebra.expressions.PathPropertyRef.startNodefield.
-
END_NODE
public static final Name END_NODE
Name of thecom.gdblab.pathAlgebra.expressions.PathPropertyRef.endNodefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(PathPropertyRef.Visitor<R> visitor)
Dispatch tovisitor.
-
-