Class org.ditchnet.util.Map

Object
   |
   +--org.ditchnet.util.Map

class org.ditchnet.util.Map

Author: Todd Ditchendorf
Defined in tabs.js


Constructor Summary
org.ditchnet.util.Map (o)
            An object that maps keys to values.
 
Method Summary
 Object containsKey(key)
           Returns true if this map contains a mapping for the specified key.
 Object containsValue(value)
           Returns true if this map maps one or more keys to the specified value.
 Object get(key)
           Returns the value to which this map maps the specified key.
 Object isEmpty()
           Returns true if this map contains no key-value mappings.
 Object keySet()
           Returns a set view of the values contained in this map.
 void put(key,value)
           Associates the specified value with the specified key in this map.
 void remove(key)
           Removes the mapping for this key from this map if it is present
 Object size()
           Returns the number of key-value mappings in this map.
 Object toString()
           Returns a string representation of this map.
 Object values()
           Returns a collection view of the values contained in this map.

Constructor Detail

org.ditchnet.util.Map

org.ditchnet.util.Map(o)

Method Detail

containsKey

Object containsKey(key)

containsValue

Object containsValue(value)

get

Object get(key)

isEmpty

Object isEmpty()

keySet

Object keySet()

put

void put(key,value)

remove

void remove(key)

size

Object size()

toString

Object toString()

values

Object values()