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 Summary
Fields Modifier and Type Field Description static int
all
Include all tokens.static int
ids
Include ids (affects allElement
value maps).static String
indexer
Configures the indexer to be used inIndexStep
.static int
keys
Include keys (affects allVertexProperty
value maps).static int
labels
static int
list
Index items using 2-item lists.static int
map
Index items using aLinkedHashMap
.static int
none
Include no tokens.static String
tokens
Configures the tokens to be included in value maps.static int
values
Include values (affects allVertexProperty
value maps).
-
Constructor Summary
Constructors Constructor Description WithOptions()
-
-
-
Field Detail
-
tokens
public static final String tokens
Configures the tokens to be included in value maps.
-
none
public static int none
Include no tokens.
-
ids
public static int ids
Include ids (affects allElement
value maps).
-
labels
public static int labels
-
keys
public static int keys
Include keys (affects allVertexProperty
value maps).
-
values
public static int values
Include values (affects allVertexProperty
value maps).
-
all
public static int all
Include all tokens.
-
list
public static int list
Index items using 2-item lists.
-
map
public static int map
Index items using aLinkedHashMap
.
-
-