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

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

Introduction

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

The text is from its open source code.

Constructor

SimpleBindings()
Default constructor uses a HashMap .
SimpleBindings(Map m)
Constructor uses an existing Map to store the values.

Method

Set>entrySet()
Objectget(Object key)
Returns the value to which this map maps the specified key.
Objectput(String name, Object value)
Sets the specified key/value in the underlying map field.
voidputAll(Map toMerge)
putAll is implemented using Map.putAll .