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

Constructor Index

 o CalcHashtable()

Method Index

 o contains(Object)
 o containsKey(Object)
 o elements()
 o get(Object)
 o keys()
 o size()
 o toString()

Constructors

 o CalcHashtable
  public CalcHashtable()

Methods

 o contains
  public static boolean contains(Object aValue)
Parameters:
aValue - a value to be searched for.
Returns:
the value is in CalcHashtable.
 o containsKey
  public static boolean containsKey(Object aKey)
Parameters:
aKey - a key to be searched for.
Returns:
the key is in CalcHashtable.
 o get
  public static Object get(Object aKey)
Parameters:
aKey - a key to be searched for.
Returns:
the value associated with the key in CalcHashtable
 o elements
  public static Enumeration elements()
Returns:
an enumeration of the CalcHashtable's elements.
 o keys
  public static Enumeration keys()
Returns:
an enumeration of the CalcHashtable's keys.
 o size
  public static int size()
Returns:
the number of elements contained in the CalcHashtable.
 o toString
  public String toString()
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index