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