Class LongHashtable.Entry

java.lang.Object
com.itextpdf.text.pdf.LongHashtable.Entry
Enclosing class:
LongHashtable

static class LongHashtable.Entry extends Object

Innerclass that acts as a datastructure to create a new entry in the table.

  • Field Details

  • Constructor Details

    • Entry

      protected Entry(int hash, long key, long value, LongHashtable.Entry next)

      Create a new entry with the given values.

      Parameters:
      hash - The code used to hash the int with
      key - The key used to enter this in the table
      value - The value for this key
      next - A reference to the next entry in the table
  • Method Details

    • getKey

      public long getKey()
    • getValue

      public long getValue()
    • clone

      protected Object clone()
      Overrides:
      clone in class Object