Java javax.script Bindings fields, constructors, methods, implement or subclass

Example usage for Java javax.script Bindings fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.script Bindings.

The text is from its open source code.

Implementation

javax.script.Bindings has the following implementations.
Click this link to see all its implementation.

Method

voidclear()
Removes all of the mappings from this map (optional operation).
booleancontainsKey(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.
voidforEach(BiConsumer action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
Objectget(Object key)
Returns the value to which this map maps the specified key.
SetkeySet()
Returns a Set view of the keys contained in this map.
Objectput(String name, Object value)
Set a named value.
voidputAll(Map toMerge)
Adds all the mappings in a given Map to this Bindings .
Objectremove(Object key)
Removes the mapping for this key from this map if it is present (optional operation).