Package hydra.shex.syntax
Class BooleanLiteral.False
- java.lang.Object
-
- hydra.shex.syntax.BooleanLiteral
-
- hydra.shex.syntax.BooleanLiteral.False
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BooleanLiteral>
- Enclosing class:
- BooleanLiteral
public static final class BooleanLiteral.False extends BooleanLiteral implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class hydra.shex.syntax.BooleanLiteral
BooleanLiteral.False, BooleanLiteral.PartialVisitor<R>, BooleanLiteral.True, BooleanLiteral.Visitor<R>
-
-
Field Summary
-
Fields inherited from class hydra.shex.syntax.BooleanLiteral
FALSE, TRUE, TYPE_
-
-
Constructor Summary
Constructors Constructor Description False()Constructs an immutableBooleanLiteral.False.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(BooleanLiteral.Visitor<R> visitor)Dispatch tovisitor.intcompareTo(BooleanLiteral other)booleanequals(java.lang.Object other)inthashCode()inthydraOrdinal()java.lang.StringtoString()
-
-
-
Constructor Detail
-
False
public False()
Constructs an immutableBooleanLiteral.False.
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
compareTo
public int compareTo(BooleanLiteral other)
- Specified by:
compareToin interfacejava.lang.Comparable<BooleanLiteral>
-
hydraOrdinal
public int hydraOrdinal()
- Specified by:
hydraOrdinalin classBooleanLiteral
-
accept
public <R> R accept(BooleanLiteral.Visitor<R> visitor)
Dispatch tovisitor.- Specified by:
acceptin classBooleanLiteral
-
-