iText 5

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

Type

Name

Methods

int

Item

get, set

int

Size

get

Methods

Public methods

Returns

Name

void

Clear

()

IntHashtable

Clone

()

bool

Contains

(int value)

bool

ContainsKey

(int key)

IntHashtableIterator

GetEntryIterator

()

int``[]

GetKeys

()

bool

IsEmpty

()

int

Remove

(int key)

int``[]

ToOrderedKeys

()

Protected methods

Returns

Name

void

Rehash

()

Details

Nested types

Classes
  • IntHashtableEntry

  • IntHashtableIterator

Constructors

IntHashtable [1/3]

Source code

public IntHashtable(int initialCapacity, float loadFactor)

Arguments

Type

Name

Description

int

initialCapacity

float

loadFactor

IntHashtable [2/3]

Source code

public IntHashtable(int initialCapacity)

Arguments

Type

Name

Description

int

initialCapacity

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

Type

Name

Description

int

value

ContainsKey

Source code

public virtual bool ContainsKey(int key)

Arguments

Type

Name

Description

int

key

Rehash

Source code

protected virtual void Rehash()

Remove

Source code

public virtual int Remove(int key)

Arguments

Type

Name

Description

int

key

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