API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.script. Bindings View Source
Author(s)
Mike Grogan
Since
1.6
Version
1.0
Serial
Hierarchy
 Map
      Bindings
Subinterfaces
Description
public interface Bindings
  A mapping of key/value pairs, all of whose keys are Strings.
See also:   
Methods
Hide/Show inherited methods
public boolean containsKey (Object key) [Specified in Map]
  Returns true if this map contains a mapping for the specified key.
public Object get (Object key) [Specified in Map]
  Returns the value to which this map maps the specified key.
public Object put (String name, Object value)
  Set a named value.
public void putAll (Map<String, Object> toMerge)
  Adds all the mappings in a given Map to this Bindings.
public Object remove (Object key) [Specified in Map]
  Removes the mapping for this key from this map if it is present (optional operation).
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar