Class WithOptions
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.WithOptions
 
- 
 public class WithOptions extends Object Configuration options to be passed to theGraphTraversal.with(String, Object).- Author:
- Daniel Kuppitz (http://gremlin.guru)
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intallInclude all tokens.static intidsInclude ids (affects allElementvalue maps).static StringindexerConfigures the indexer to be used inIndexStep.static intkeysInclude keys (affects allVertexPropertyvalue maps).static intlabelsstatic intlistIndex items using 2-item lists.static intmapIndex items using aLinkedHashMap.static intnoneInclude no tokens.static StringtokensConfigures the tokens to be included in value maps.static intvaluesInclude values (affects allVertexPropertyvalue maps).
 - 
Constructor SummaryConstructors Constructor Description WithOptions()
 
- 
- 
- 
Field Detail- 
tokenspublic static final String tokens Configures the tokens to be included in value maps.
 - 
nonepublic static int none Include no tokens.
 - 
idspublic static int ids Include ids (affects allElementvalue maps).
 - 
labelspublic static int labels 
 - 
keyspublic static int keys Include keys (affects allVertexPropertyvalue maps).
 - 
valuespublic static int values Include values (affects allVertexPropertyvalue maps).
 - 
allpublic static int all Include all tokens.
 - 
listpublic static int list Index items using 2-item lists.
 - 
mappublic static int map Index items using aLinkedHashMap.
 
- 
 
-