Skip to main content
Skip table of contents

IntHashtable (1)

IntHashtable Public class

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph iTextSharp.text.pdf
  iTextSharp.text.pdf.IntHashtable[[IntHashtable]]
  end

Members

Properties

Public properties
TypeNameMethods
intItemget, set
intSizeget

Methods

Public methods
ReturnsName
voidClear()
IntHashtableClone()
boolContains(int value)
boolContainsKey(int key)
IntHashtableIteratorGetEntryIterator()
int``[]GetKeys()
boolIsEmpty()
intRemove(int key)
int``[]ToOrderedKeys()
Protected methods
ReturnsName
voidRehash()

Details

Nested types

Classes
  • IntHashtableEntry
  • IntHashtableIterator

Constructors

IntHashtable [1/3]

Source code

public IntHashtable(int initialCapacity, float loadFactor)
Arguments
TypeNameDescription
intinitialCapacity
floatloadFactor
IntHashtable [2/3]

Source code

public IntHashtable(int initialCapacity)
Arguments
TypeNameDescription
intinitialCapacity
IntHashtable [3/3]

Source code

public IntHashtable()

Methods

IsEmpty

Source code

public virtual bool IsEmpty()
Contains

Source code

public virtual bool Contains(int value)
Arguments
TypeNameDescription
intvalue
ContainsKey

Source code

public virtual bool ContainsKey(int key)
Arguments
TypeNameDescription
intkey
Rehash

Source code

protected virtual void Rehash()
Remove

Source code

public virtual int Remove(int key)
Arguments
TypeNameDescription
intkey
Clear

Source code

public virtual void Clear()
Clone

Source code

public virtual IntHashtable Clone()
ToOrderedKeys

Source code

public virtual int ToOrderedKeys()
GetKeys

Source code

public virtual int GetKeys()
GetEntryIterator

Source code

public virtual IntHashtableIterator GetEntryIterator()

Properties

Size
public virtual int Size { get; }
Item
public int Item { get; set; }

Generated with ModularDoc

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.