brf.j2me.dynaworks
Class DataDictionary

java.lang.Object
  |
  +--java.util.Dictionary
        |
        +--java.util.Hashtable
              |
              +--brf.j2me.dynaworks.DataDictionary
All Implemented Interfaces:
java.lang.Cloneable, java.util.Map, java.io.Serializable

public class DataDictionary
extends java.util.Hashtable

The DataDictionary stores key/value pairs where the key is a string and the value can be any Java object. The dictionary allows easy access to data that is shared across pages. A DataDictionary basically is an Hashtable with extended search functionality.

Version:
1.0
Author:
Bernd R. Fix
See Also:
Serialized Form

Inner classes inherited from class java.util.Map
java.util.Map.Entry
 
Fields inherited from class java.util.Hashtable
count, emptyEnumerator, emptyIterator, ENTRIES, entrySet, KEYS, keySet, loadFactor, modCount, serialVersionUID, table, threshold, values, VALUES
 
Constructor Summary
DataDictionary()
           
 
Method Summary
 java.util.Vector findValues(java.lang.Class cl)
          Find an entries based on type of value.
 
Methods inherited from class java.util.Hashtable
, clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, get, getEnumeration, getIterator, hashCode, isEmpty, keys, keySet, put, putAll, readObject, rehash, remove, size, toString, values, writeObject
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, registerNatives, wait, wait, wait
 

Constructor Detail

DataDictionary

public DataDictionary()
Method Detail

findValues

public java.util.Vector findValues(java.lang.Class cl)
Find an entries based on type of value.

Parameters:
cl - Class - requested class for return values.
Returns:
Enumeration - Enumeration containing result list.