Class SelectionCondition.Not
- java.lang.Object
-
- com.gdblab.pathAlgebra.expressions.SelectionCondition
-
- com.gdblab.pathAlgebra.expressions.SelectionCondition.Not
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SelectionCondition>
- Enclosing class:
- SelectionCondition
public static final class SelectionCondition.Not extends SelectionCondition implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.gdblab.pathAlgebra.expressions.SelectionCondition
SelectionCondition.And, SelectionCondition.Not, SelectionCondition.Or, SelectionCondition.PartialVisitor<R>, SelectionCondition.Simple, SelectionCondition.Visitor<R>
-
-
Field Summary
Fields Modifier and Type Field Description NotConditionvalue
-
Constructor Summary
Constructors Constructor Description Not(NotCondition value)Constructs an immutableSelectionCondition.Not.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(SelectionCondition.Visitor<R> visitor)Dispatch tovisitor.intcompareTo(SelectionCondition other)booleanequals(java.lang.Object other)inthashCode()
-
-
-
Field Detail
-
value
public final NotCondition value
-
-
Constructor Detail
-
Not
public Not(NotCondition value)
Constructs an immutableSelectionCondition.Not.
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
compareTo
public int compareTo(SelectionCondition other)
- Specified by:
compareToin interfacejava.lang.Comparable<SelectionCondition>
-
accept
public <R> R accept(SelectionCondition.Visitor<R> visitor)
Dispatch tovisitor.- Specified by:
acceptin classSelectionCondition
-
-