Class polarDust.calculator.CalcHashtable
All Packages Class Hierarchy This Package Previous Next Index
Class polarDust.calculator.CalcHashtable
java.lang.Object
|
+----polarDust.calculator.CalcHashtable
- public final class CalcHashtable
- extends Object
- implements CalcConstants
CalcHashtable is a colection of associations between a key integer code and
a String value.
The source code.
- Version:
- 0.9, 1996.06.04
- Author:
- Sorin Lazareanu
-
CalcHashtable()
-
-
contains(Object)
-
-
containsKey(Object)
-
-
elements()
-
-
get(Object)
-
-
keys()
-
-
size()
-
-
toString()
-
CalcHashtable
public CalcHashtable()
contains
public static boolean contains(Object aValue)
- Parameters:
- aValue - a value to be searched for.
- Returns:
- the value is in CalcHashtable.
containsKey
public static boolean containsKey(Object aKey)
- Parameters:
- aKey - a key to be searched for.
- Returns:
- the key is in CalcHashtable.
get
public static Object get(Object aKey)
- Parameters:
- aKey - a key to be searched for.
- Returns:
- the value associated with the key in CalcHashtable
elements
public static Enumeration elements()
- Returns:
- an enumeration of the CalcHashtable's elements.
keys
public static Enumeration keys()
- Returns:
- an enumeration of the CalcHashtable's keys.
size
public static int size()
- Returns:
- the number of elements contained in the CalcHashtable.
toString
public String toString()
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index