Package openGql.grammar
Class ShortestPathSearch
- java.lang.Object
-
- openGql.grammar.ShortestPathSearch
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ShortestPathSearch>
- Direct Known Subclasses:
ShortestPathSearch.AllShortest,ShortestPathSearch.AnyShortest,ShortestPathSearch.CountedShortest,ShortestPathSearch.CountedShortestGroup
public abstract class ShortestPathSearch extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<ShortestPathSearch>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classShortestPathSearch.AllShorteststatic classShortestPathSearch.AnyShorteststatic classShortestPathSearch.CountedShorteststatic classShortestPathSearch.CountedShortestGroupstatic interfaceShortestPathSearch.PartialVisitor<R>Partial visitor overShortestPathSearchwith a defaultShortestPathSearch.PartialVisitor.otherwise(openGql.grammar.ShortestPathSearch)branch.static interfaceShortestPathSearch.Visitor<R>Visitor overShortestPathSearch.
-
Field Summary
Fields Modifier and Type Field Description static NameALL_SHORTESTName of theopenGql.grammar.ShortestPathSearch.allShortestfield.static NameANY_SHORTESTName of theopenGql.grammar.ShortestPathSearch.anyShortestfield.static NameCOUNTED_SHORTESTName of theopenGql.grammar.ShortestPathSearch.countedShortestfield.static NameCOUNTED_SHORTEST_GROUPName of theopenGql.grammar.ShortestPathSearch.countedShortestGroupfield.static NameTYPE_Name of theopenGql.grammar.ShortestPathSearchtype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(ShortestPathSearch.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.ShortestPathSearchtype.
-
ALL_SHORTEST
public static final Name ALL_SHORTEST
Name of theopenGql.grammar.ShortestPathSearch.allShortestfield.
-
ANY_SHORTEST
public static final Name ANY_SHORTEST
Name of theopenGql.grammar.ShortestPathSearch.anyShortestfield.
-
COUNTED_SHORTEST
public static final Name COUNTED_SHORTEST
Name of theopenGql.grammar.ShortestPathSearch.countedShortestfield.
-
COUNTED_SHORTEST_GROUP
public static final Name COUNTED_SHORTEST_GROUP
Name of theopenGql.grammar.ShortestPathSearch.countedShortestGroupfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(ShortestPathSearch.Visitor<R> visitor)
Dispatch tovisitor.
-
-