Interface Graph.Variables
- 
- Enclosing interface:
- Graph
 
 public static interface Graph.VariablesGraph variables are a set of key/value pairs associated with the graph. The keys are String and the values are Objects.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classGraph.Variables.Exceptions
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Map<String,Object>asMap()Gets the variables of theGraphas aMap.<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.
 
- 
- 
- 
Method Detail- 
removevoid remove(String key) Removes a variable.
 
- 
 
-