Parsing Engine

Uses of Class
danbikel.util.HashMapPrimitive.Entry

Packages that use HashMapPrimitive.Entry
danbikel.util Provides some basic utility classes. 
 

Uses of HashMapPrimitive.Entry in danbikel.util
 

Subclasses of HashMapPrimitive.Entry in danbikel.util
protected static class HashMapDouble.Entry<K>
          A map entry for this type of map, containing a key and a double.
protected static class HashMapInt.Entry<K>
          A map entry for this type of map, containing a key and an int.
protected static class HashMapTwoDoubles.Entry<K>
          A map entry for this type of map, containing a key and a pair of doubles.
protected static class HashMapTwoInts.Entry<K>
          A map entry for this type of map, containing a key and a pair of ints.
 

Fields in danbikel.util declared as HashMapPrimitive.Entry
protected  HashMapPrimitive.Entry<K> HashMapPrimitive.Entry.next
          The next pointer of this entry’s singly-linked list.
 

Methods in danbikel.util that return HashMapPrimitive.Entry
protected  HashMapPrimitive.Entry<K> HashMapDouble.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and a double.
protected  HashMapPrimitive.Entry<K> HashMapInt.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and an int.
protected abstract  HashMapPrimitive.Entry<K> HashMapPrimitive.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          The method used when constructing map entries for concrete subclasses.
protected  HashMapPrimitive.Entry<K> HashMapTwoDoubles.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and a pair of doubles.
protected  HashMapPrimitive.Entry<K> HashMapTwoInts.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and a pair of ints.
 

Methods in danbikel.util with parameters of type HashMapPrimitive.Entry
protected  void HashMapPrimitive.addEntryMRU(HashMapPrimitive.Entry entry)
          Adds the specified entry to the beginning of the singly-linked list at its bucket index (indicating it is the most-recently used entry).
 void HashMapDouble.Entry.copyValuesFrom(HashMapPrimitive.Entry copyFrom)
          Makes the data membes in this entry be identical to those in the specified entry by performing a shallow copy.
 void HashMapInt.Entry.copyValuesFrom(HashMapPrimitive.Entry copyFrom)
          Makes the data membes in this entry be identical to those in the specified entry by performing a shallow copy.
abstract  void HashMapPrimitive.Entry.copyValuesFrom(HashMapPrimitive.Entry copyFrom)
          Copies the values from the specified entry to this entry.
 void HashMapTwoDoubles.Entry.copyValuesFrom(HashMapPrimitive.Entry copyFrom)
          Makes the data membes in this entry be identical to those in the specified entry by performing a shallow copy.
 void HashMapTwoInts.Entry.copyValuesFrom(HashMapPrimitive.Entry copyFrom)
          Makes the data membes in this entry be identical to those in the specified entry by performing a shallow copy.
protected  HashMapPrimitive.Entry<K> HashMapDouble.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and a double.
protected  HashMapPrimitive.Entry<K> HashMapInt.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and an int.
protected abstract  HashMapPrimitive.Entry<K> HashMapPrimitive.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          The method used when constructing map entries for concrete subclasses.
protected  HashMapPrimitive.Entry<K> HashMapTwoDoubles.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and a pair of doubles.
protected  HashMapPrimitive.Entry<K> HashMapTwoInts.getNewEntry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Gets a map entry for this type of map, containing a key and a pair of ints.
 

Constructors in danbikel.util with parameters of type HashMapPrimitive.Entry
HashMapDouble.Entry(int hash, K key, double value, HashMapPrimitive.Entry next)
          Constructs a new entry for a map from objects to doubles.
HashMapDouble.Entry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Constructs a new entry for a map from objects to doubles.
HashMapInt.Entry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Constructs a new entry for a map from objects to ints.
HashMapInt.Entry(int hash, K key, int value, HashMapPrimitive.Entry<K> next)
          Constructs a new entry for a map from objects to ints.
HashMapPrimitive.Entry(int keyHash, K key, HashMapPrimitive.Entry<K> next)
          Constructs a new entry with the specified values for its data members.
HashMapTwoDoubles.Entry(int hash, K key, double value0, double value1, HashMapPrimitive.Entry<K> next)
          Constructs a new entry for a map from objects to pairs of doubles.
HashMapTwoDoubles.Entry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Constructs a new entry for a map from objects to pairs of doubles.
HashMapTwoInts.Entry(int hash, K key, HashMapPrimitive.Entry<K> next)
          Constructs a new entry for a map from objects to pairs of ints.
HashMapTwoInts.Entry(int hash, K key, int value0, int value1, HashMapPrimitive.Entry<K> next)
          Constructs a new entry for a map from objects to ints.
 


Parsing Engine

Author: Dan Bikel.