Package openGql.grammar
Class SelectStatementBody.GraphMatchList
- java.lang.Object
-
- openGql.grammar.SelectStatementBody
-
- openGql.grammar.SelectStatementBody.GraphMatchList
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SelectStatementBody>
- Enclosing class:
- SelectStatementBody
public static final class SelectStatementBody.GraphMatchList extends SelectStatementBody implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class openGql.grammar.SelectStatementBody
SelectStatementBody.GraphMatchList, SelectStatementBody.PartialVisitor<R>, SelectStatementBody.QuerySpecification, SelectStatementBody.Visitor<R>
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<SelectGraphMatch>value-
Fields inherited from class openGql.grammar.SelectStatementBody
GRAPH_MATCH_LIST, QUERY_SPECIFICATION, TYPE_
-
-
Constructor Summary
Constructors Constructor Description GraphMatchList(java.util.List<SelectGraphMatch> value)Constructs an immutableSelectStatementBody.GraphMatchList.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(SelectStatementBody.Visitor<R> visitor)Dispatch tovisitor.intcompareTo(SelectStatementBody other)booleanequals(java.lang.Object other)inthashCode()
-
-
-
Field Detail
-
value
public final java.util.List<SelectGraphMatch> value
-
-
Constructor Detail
-
GraphMatchList
public GraphMatchList(java.util.List<SelectGraphMatch> value)
Constructs an immutableSelectStatementBody.GraphMatchList.
-
-
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(SelectStatementBody other)
- Specified by:
compareToin interfacejava.lang.Comparable<SelectStatementBody>
-
accept
public <R> R accept(SelectStatementBody.Visitor<R> visitor)
Dispatch tovisitor.- Specified by:
acceptin classSelectStatementBody
-
-