Example usage for Java javax.script Bindings fields, constructors, methods, implement or subclass
The text is from its open source code.
void | clear() Removes all of the mappings from this map (optional operation). |
boolean | containsKey(Object key) Returns true if this map contains a mapping for the specified key. |
Set | entrySet() Returns a Set view of the mappings contained in this map. |
void | forEach(BiConsumer super K, ? super V> action) Performs the given action for each entry in this map until all entries have been processed or the action throws an exception. |
Object | get(Object key) Returns the value to which this map maps the specified key. |
Set | keySet() Returns a Set view of the keys contained in this map. |
Object | put(String name, Object value) Set a named value. |
void | putAll(Map extends String, ? extends Object> toMerge) Adds all the mappings in a given Map to this Bindings . |
Object | remove(Object key) Removes the mapping for this key from this map if it is present (optional operation). |