iText 5

LongHashtable (1)

LongHashtable Public class

Diagram

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

Members

Properties

Public properties

Type

Name

Methods

long

Item

get, set

int

Size

get

Methods

Public methods

Returns

Name

void

Clear

()

LongHashtable

Clone

()

bool

Contains

(long value)

bool

ContainsKey

(long key)

LongHashtableIterator

GetEntryIterator

()

long``[]

GetKeys

()

bool

IsEmpty

()

long

Remove

(long key)

long``[]

ToOrderedKeys

()

Protected methods

Returns

Name

void

Rehash

()

Details

Nested types

Classes
  • LongHashtableEntry

  • LongHashtableIterator

Constructors

LongHashtable [1/3]

Source code

public LongHashtable(int initialCapacity, float loadFactor)

Arguments

Type

Name

Description

int

initialCapacity

float

loadFactor

LongHashtable [2/3]

Source code

public LongHashtable(int initialCapacity)

Arguments

Type

Name

Description

int

initialCapacity

LongHashtable [3/3]

Source code

public LongHashtable()

Methods

IsEmpty

Source code

public virtual bool IsEmpty()

Contains

Source code

public virtual bool Contains(long value)

Arguments

Type

Name

Description

long

value

ContainsKey

Source code

public virtual bool ContainsKey(long key)

Arguments

Type

Name

Description

long

key

Rehash

Source code

protected virtual void Rehash()

Remove

Source code

public virtual long Remove(long key)

Arguments

Type

Name

Description

long

key

Clear

Source code

public virtual void Clear()

Clone

Source code

public virtual LongHashtable Clone()

ToOrderedKeys

Source code

public virtual long ToOrderedKeys()

GetKeys

Source code

public virtual long GetKeys()

GetEntryIterator

Source code

public virtual LongHashtableIterator GetEntryIterator()

Properties

Size

public virtual int Size { get; }

Item

public long Item { get; set; }

Generated with ModularDoc