Package com.gdblab.pathAlgebra.syntax
Class CompareSym
- java.lang.Object
-
- com.gdblab.pathAlgebra.syntax.CompareSym
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CompareSym>
- Direct Known Subclasses:
CompareSym.Equal,CompareSym.GreaterThan,CompareSym.GreaterThanOrEqual,CompareSym.LessThan,CompareSym.LessThanOrEqual,CompareSym.NotEqual
public abstract class CompareSym extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<CompareSym>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCompareSym.Equalstatic classCompareSym.GreaterThanstatic classCompareSym.GreaterThanOrEqualstatic classCompareSym.LessThanstatic classCompareSym.LessThanOrEqualstatic classCompareSym.NotEqualstatic interfaceCompareSym.PartialVisitor<R>Partial visitor overCompareSymwith a defaultCompareSym.PartialVisitor.otherwise(com.gdblab.pathAlgebra.syntax.CompareSym)branch.static interfaceCompareSym.Visitor<R>Visitor overCompareSym.
-
Field Summary
Fields Modifier and Type Field Description static NameEQUALName of thecom.gdblab.pathAlgebra.syntax.CompareSym.equalfield.static NameGREATER_THANName of thecom.gdblab.pathAlgebra.syntax.CompareSym.greaterThanfield.static NameGREATER_THAN_OR_EQUALName of thecom.gdblab.pathAlgebra.syntax.CompareSym.greaterThanOrEqualfield.static NameLESS_THANName of thecom.gdblab.pathAlgebra.syntax.CompareSym.lessThanfield.static NameLESS_THAN_OR_EQUALName of thecom.gdblab.pathAlgebra.syntax.CompareSym.lessThanOrEqualfield.static NameNOT_EQUALName of thecom.gdblab.pathAlgebra.syntax.CompareSym.notEqualfield.static NameTYPE_Name of thecom.gdblab.pathAlgebra.syntax.CompareSymtype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(CompareSym.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thecom.gdblab.pathAlgebra.syntax.CompareSymtype.
-
EQUAL
public static final Name EQUAL
Name of thecom.gdblab.pathAlgebra.syntax.CompareSym.equalfield.
-
NOT_EQUAL
public static final Name NOT_EQUAL
Name of thecom.gdblab.pathAlgebra.syntax.CompareSym.notEqualfield.
-
LESS_THAN
public static final Name LESS_THAN
Name of thecom.gdblab.pathAlgebra.syntax.CompareSym.lessThanfield.
-
GREATER_THAN
public static final Name GREATER_THAN
Name of thecom.gdblab.pathAlgebra.syntax.CompareSym.greaterThanfield.
-
LESS_THAN_OR_EQUAL
public static final Name LESS_THAN_OR_EQUAL
Name of thecom.gdblab.pathAlgebra.syntax.CompareSym.lessThanOrEqualfield.
-
GREATER_THAN_OR_EQUAL
public static final Name GREATER_THAN_OR_EQUAL
Name of thecom.gdblab.pathAlgebra.syntax.CompareSym.greaterThanOrEqualfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(CompareSym.Visitor<R> visitor)
Dispatch tovisitor.
-
-