Example usage for Java javax.script SimpleBindings fields, constructors, methods, implement or subclass
The text is from its open source code.
SimpleBindings() Default constructor uses a HashMap . | |
SimpleBindings(Map Constructor uses an existing Map to store the values. |
Set | entrySet() |
Object | get(Object key) Returns the value to which this map maps the specified key. |
Object | put(String name, Object value) Sets the specified key/value in the underlying map field. |
void | putAll(Map extends String, ? extends Object> toMerge) putAll is implemented using Map.putAll . |