Package openGql.grammar
Class TrimType
- java.lang.Object
-
- openGql.grammar.TrimType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TrimType>
- Direct Known Subclasses:
TrimType.Btrim,TrimType.Ltrim,TrimType.Rtrim
public abstract class TrimType extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<TrimType>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTrimType.Btrimstatic classTrimType.Ltrimstatic interfaceTrimType.PartialVisitor<R>Partial visitor overTrimTypewith a defaultTrimType.PartialVisitor.otherwise(openGql.grammar.TrimType)branch.static classTrimType.Rtrimstatic interfaceTrimType.Visitor<R>Visitor overTrimType.
-
Field Summary
Fields Modifier and Type Field Description static NameBTRIMName of theopenGql.grammar.TrimType.btrimfield.static NameLTRIMName of theopenGql.grammar.TrimType.ltrimfield.static NameRTRIMName of theopenGql.grammar.TrimType.rtrimfield.static NameTYPE_Name of theopenGql.grammar.TrimTypetype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(TrimType.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.TrimTypetype.
-
BTRIM
public static final Name BTRIM
Name of theopenGql.grammar.TrimType.btrimfield.
-
LTRIM
public static final Name LTRIM
Name of theopenGql.grammar.TrimType.ltrimfield.
-
RTRIM
public static final Name RTRIM
Name of theopenGql.grammar.TrimType.rtrimfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(TrimType.Visitor<R> visitor)
Dispatch tovisitor.
-
-