Dictionary

Inheritance: java.lang.Object

public class Dictionary<T,V>

Constructors

Constructor Description
Dictionary()
Dictionary(Tup<T,V>[] pairs)
Dictionary(Dictionary<T,V> typeSet)

Methods

Method Description
addItem(T key, V value)
clear()
containsKey(T key)
equals(Object arg0)
getClass()
getKeys()
getValues()
get_Item(T key)
hashCode()
notify()
notifyAll()
removeItemByKey(T key)
set_Item(T key, V value)
size()
toString()
tryGetValue(T key, V[] outValue)
wait()
wait(long arg0)
wait(long arg0, int arg1)

Dictionary()

public Dictionary()

Dictionary(Tup<T,V>[] pairs)

public Dictionary(Tup<T,V>[] pairs)

Parameters:

Parameter Type Description
pairs com.aspose.barcode.common.generic.types.Tup<T,V>[]

Dictionary(Dictionary<T,V> typeSet)

public Dictionary(Dictionary<T,V> typeSet)

Parameters:

Parameter Type Description
typeSet Dictionary

addItem(T key, V value)

public void addItem(T key, V value)

Parameters:

Parameter Type Description
key T
value V

clear()

public void clear()

containsKey(T key)

public boolean containsKey(T key)

Parameters:

Parameter Type Description
key T

Returns: boolean

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

Parameter Type Description
arg0 java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getKeys()

public Set<T> getKeys()

Returns: java.util.Set

getValues()

public Collection<V> getValues()

Returns: java.util.Collection

get_Item(T key)

public V get_Item(T key)

Parameters:

Parameter Type Description
key T

Returns: V

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

removeItemByKey(T key)

public void removeItemByKey(T key)

Parameters:

Parameter Type Description
key T

set_Item(T key, V value)

public void set_Item(T key, V value)

Parameters:

Parameter Type Description
key T
value V

size()

public int size()

Returns: int

toString()

public String toString()

Returns: java.lang.String

tryGetValue(T key, V[] outValue)

public boolean tryGetValue(T key, V[] outValue)

Parameters:

Parameter Type Description
key T
outValue V[]

Returns: boolean

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

Parameter Type Description
arg0 long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

Parameter Type Description
arg0 long
arg1 int