Class PropertySource
- java.lang.Object
-
- com.gdblab.pathAlgebra.expressions.PropertySource
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PropertySource>
- Direct Known Subclasses:
PropertySource.EdgeProperty,PropertySource.NodeProperty,PropertySource.PathProperty
public abstract class PropertySource extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<PropertySource>
Source of a property value- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPropertySource.EdgePropertystatic classPropertySource.NodePropertystatic interfacePropertySource.PartialVisitor<R>Partial visitor overPropertySourcewith a defaultPropertySource.PartialVisitor.otherwise(com.gdblab.pathAlgebra.expressions.PropertySource)branch.static classPropertySource.PathPropertystatic interfacePropertySource.Visitor<R>Visitor overPropertySource.
-
Field Summary
Fields Modifier and Type Field Description static NameEDGE_PROPERTYName of thecom.gdblab.pathAlgebra.expressions.PropertySource.edgePropertyfield.static NameNODE_PROPERTYName of thecom.gdblab.pathAlgebra.expressions.PropertySource.nodePropertyfield.static NamePATH_PROPERTYName of thecom.gdblab.pathAlgebra.expressions.PropertySource.pathPropertyfield.static NameTYPE_Name of thecom.gdblab.pathAlgebra.expressions.PropertySourcetype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(PropertySource.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thecom.gdblab.pathAlgebra.expressions.PropertySourcetype.
-
NODE_PROPERTY
public static final Name NODE_PROPERTY
Name of thecom.gdblab.pathAlgebra.expressions.PropertySource.nodePropertyfield.
-
EDGE_PROPERTY
public static final Name EDGE_PROPERTY
Name of thecom.gdblab.pathAlgebra.expressions.PropertySource.edgePropertyfield.
-
PATH_PROPERTY
public static final Name PATH_PROPERTY
Name of thecom.gdblab.pathAlgebra.expressions.PropertySource.pathPropertyfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(PropertySource.Visitor<R> visitor)
Dispatch tovisitor.
-
-