Class TinkerGraphVariables
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraphVariables
-
- All Implemented Interfaces:
Graph.Variables
public final class TinkerGraphVariables extends Object implements Graph.Variables
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.Graph.Variables
Graph.Variables.Exceptions
-
-
Constructor Summary
Constructors Constructor Description TinkerGraphVariables()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Optional<R>get(String key)Set<String>keys()voidremove(String key)voidset(String key, Object value)StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.Graph.Variables
asMap
-
-
-
-
Method Detail
-
keys
public Set<String> keys()
- Specified by:
keysin interfaceGraph.Variables
-
get
public <R> Optional<R> get(String key)
- Specified by:
getin interfaceGraph.Variables
-
remove
public void remove(String key)
- Specified by:
removein interfaceGraph.Variables
-
set
public void set(String key, Object value)
- Specified by:
setin interfaceGraph.Variables
-
-