Package openGql.grammar
Class LabelSetPhrase
- java.lang.Object
-
- openGql.grammar.LabelSetPhrase
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LabelSetPhrase>
- Direct Known Subclasses:
LabelSetPhrase.IsOrColonWithLabels,LabelSetPhrase.MultipleLabels,LabelSetPhrase.SingleLabel
public abstract class LabelSetPhrase extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<LabelSetPhrase>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLabelSetPhrase.IsOrColonWithLabelsstatic classLabelSetPhrase.MultipleLabelsstatic interfaceLabelSetPhrase.PartialVisitor<R>Partial visitor overLabelSetPhrasewith a defaultLabelSetPhrase.PartialVisitor.otherwise(openGql.grammar.LabelSetPhrase)branch.static classLabelSetPhrase.SingleLabelstatic interfaceLabelSetPhrase.Visitor<R>Visitor overLabelSetPhrase.
-
Field Summary
Fields Modifier and Type Field Description static NameIS_OR_COLON_WITH_LABELSName of theopenGql.grammar.LabelSetPhrase.isOrColonWithLabelsfield.static NameMULTIPLE_LABELSName of theopenGql.grammar.LabelSetPhrase.multipleLabelsfield.static NameSINGLE_LABELName of theopenGql.grammar.LabelSetPhrase.singleLabelfield.static NameTYPE_Name of theopenGql.grammar.LabelSetPhrasetype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(LabelSetPhrase.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.LabelSetPhrasetype.
-
SINGLE_LABEL
public static final Name SINGLE_LABEL
Name of theopenGql.grammar.LabelSetPhrase.singleLabelfield.
-
MULTIPLE_LABELS
public static final Name MULTIPLE_LABELS
Name of theopenGql.grammar.LabelSetPhrase.multipleLabelsfield.
-
IS_OR_COLON_WITH_LABELS
public static final Name IS_OR_COLON_WITH_LABELS
Name of theopenGql.grammar.LabelSetPhrase.isOrColonWithLabelsfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(LabelSetPhrase.Visitor<R> visitor)
Dispatch tovisitor.
-
-