Class DoubleCache
java.lang.Object
org.aspectj.org.eclipse.jdt.internal.compiler.codegen.DoubleCache
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clears the hash table so that it has no more elements in it.booleancontainsKey(double key) Returns true if the collection contains an element for the key.intputIfAbsent(double key, int value) Puts the specified element into the hashtable, using the specified key.toString()Converts to a rather lengthy String.
-
Constructor Details
-
DoubleCache
public DoubleCache()Constructs a new, empty hashtable. A default capacity and load factor is used. Note that the hashtable will automatically grow when it gets full.
-
-
Method Details
-
clear
public void clear()Clears the hash table so that it has no more elements in it. -
containsKey
public boolean containsKey(double key) Returns true if the collection contains an element for the key.- Parameters:
key-doublethe key that we are looking for- Returns:
- boolean
-
putIfAbsent
public int putIfAbsent(double key, int value) Puts the specified element into the hashtable, using the specified key. The element may be retrieved by doing a get() with the same key.- Parameters:
key-doublethe specified key in the hashtablevalue-intthe specified element- Returns:
- int value
-
toString
-