Class IntHashtable.Entry

java.lang.Object
com.itextpdf.io.util.IntHashtable.Entry
Enclosing class:
IntHashtable

public static class IntHashtable.Entry extends Object
Innerclass that acts as a datastructure to create a new entry in the table.
  • Field Details

  • Constructor Details

    • Entry

      Entry(int key, int value, IntHashtable.Entry next)
      Create a new entry with the given values.
      Parameters:
      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 int getKey()
    • getValue

      public int getValue()
    • clone

      protected Object clone()
      Overrides:
      clone in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object