public class

BindingsEntrySet.BindingsEntry

extends Object
implements Map.Entry<K, V>
java.lang.Object
   ↳ com.sun.script.util.BindingsEntrySet.BindingsEntry

Summary

Public Constructors
BindingsEntrySet.BindingsEntry(String key)
Public Methods
String getKey()
Returns the key corresponding to this entry.
Object getValue()
Returns the value corresponding to this entry.
Object setValue(Object value)
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.util.Map.Entry

Public Constructors

public BindingsEntrySet.BindingsEntry (String key)

Public Methods

public String getKey ()

Returns the key corresponding to this entry.

Returns
  • the key corresponding to this entry

public Object getValue ()

Returns the value corresponding to this entry. If the mapping has been removed from the backing map (by the iterator's remove operation), the results of this call are undefined.

Returns
  • the value corresponding to this entry

public Object setValue (Object value)