Package openGql.grammar
Class CreateGraphTypeOption
- java.lang.Object
-
- openGql.grammar.CreateGraphTypeOption
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CreateGraphTypeOption>
- Direct Known Subclasses:
CreateGraphTypeOption.OrReplace,CreateGraphTypeOption.TypeIfNotExists
public abstract class CreateGraphTypeOption extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<CreateGraphTypeOption>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCreateGraphTypeOption.OrReplacestatic interfaceCreateGraphTypeOption.PartialVisitor<R>Partial visitor overCreateGraphTypeOptionwith a defaultCreateGraphTypeOption.PartialVisitor.otherwise(openGql.grammar.CreateGraphTypeOption)branch.static classCreateGraphTypeOption.TypeIfNotExistsstatic interfaceCreateGraphTypeOption.Visitor<R>Visitor overCreateGraphTypeOption.
-
Field Summary
Fields Modifier and Type Field Description static NameOR_REPLACEName of theopenGql.grammar.CreateGraphTypeOption.orReplacefield.static NameTYPE_Name of theopenGql.grammar.CreateGraphTypeOptiontype.static NameTYPE_IF_NOT_EXISTSName of theopenGql.grammar.CreateGraphTypeOption.typeIfNotExistsfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(CreateGraphTypeOption.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.CreateGraphTypeOptiontype.
-
TYPE_IF_NOT_EXISTS
public static final Name TYPE_IF_NOT_EXISTS
Name of theopenGql.grammar.CreateGraphTypeOption.typeIfNotExistsfield.
-
OR_REPLACE
public static final Name OR_REPLACE
Name of theopenGql.grammar.CreateGraphTypeOption.orReplacefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(CreateGraphTypeOption.Visitor<R> visitor)
Dispatch tovisitor.
-
-