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.VariablesGraph.Variables.Exceptions
 
- 
 - 
Constructor SummaryConstructors Constructor Description TinkerGraphVariables()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Optional<R>get(String key)Gets a variable.Set<String>keys()Keys set for the available variables.voidremove(String key)Removes a variable.voidset(String key, Object value)Sets a variable.StringtoString()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.Graph.VariablesasMap
 
- 
 
- 
- 
- 
Method Detail- 
keyspublic Set<String> keys() Description copied from interface:Graph.VariablesKeys set for the available variables.- Specified by:
- keysin interface- Graph.Variables
 
 - 
getpublic <R> Optional<R> get(String key) Description copied from interface:Graph.VariablesGets a variable.- Specified by:
- getin interface- Graph.Variables
 
 - 
removepublic void remove(String key) Description copied from interface:Graph.VariablesRemoves a variable.- Specified by:
- removein interface- Graph.Variables
 
 - 
setpublic void set(String key, Object value) Description copied from interface:Graph.VariablesSets a variable.- Specified by:
- setin interface- Graph.Variables
 
 
- 
 
-