java.lang.Object
io.qt.QtObject
io.qt.internal.AbstractAssociativeContainer<K,V>
io.qt.internal.AbstractHash<K,V>
io.qt.core.QHash<K,V>
- All Implemented Interfaces:
QtObjectInterface,Cloneable,Iterable<QPair<K,,V>> Map<K,V>
Java wrapper for Qt class QHash
-
Nested Class Summary
Nested classes/interfaces inherited from class io.qt.QtObject
QtObject.QPrivateConstructor -
Constructor Summary
ConstructorsModifierConstructorDescriptionQHash(QMetaType.Type keyMetaType, QMetaType valueMetaType) QHash(QMetaType.Type keyMetaType, QMetaType.Type valueMetaType) QHash(QMetaType.Type keyMetaType, Class<V> valueType) QHash(QMetaType keyMetaType, QMetaType.Type valueMetaType) protectedQHash(Class<K> keyType, QMetaType.Type valueMetaType) -
Method Summary
Modifier and TypeMethodDescriptionprotected final QAssociativeIterator<K,V> begin()final intcapacity()final voidclear()clone()protected final QAssociativeConstIterator<K,V> protected final QAssociativeConstIterator<K,V> constEnd()final booleanfinal booleancontainsKey(Object key) final booleancontainsValue(Object value) final intcount()final intprotected final QAssociativeIterator<K,V> end()booleanUsed to check if this object shares the same native counterpart with the other object, i.e. the objects are equals if their native counterparts are identical.final QAssociativeConstIterator<K,V> final VinthashCode()final voidfinal booleanisEmpty()final Kfinal Kkeys()static <K,V> QHash<K, V> of(K k1, V v1) Returns a QHash containing a single mapping.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2) Returns a QHash containing two mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3) Returns a QHash containing three mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) Returns a QHash containing four mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) Returns a QHash containing five mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6) Returns a QHash containing six mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7) Returns a QHash containing seven mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8) Returns a QHash containing eight mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9) Returns a QHash containing nine mappings.static <K,V> QHash<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9, K k10, V v10) Returns a QHash containing ten mappings.static <K,V> QHash<K, V> Returns a QHash containing keys and values extracted from the given entries.final VvoidreadFrom(QDataStream stream) final Vfinal intfinal voidreserve(int size) final intsize()final voidsqueeze()final VtoString()final Vfinal Vvalues()voidwriteTo(QDataStream stream) Methods inherited from class io.qt.internal.AbstractHash
entrySet, keySetMethods inherited from class io.qt.internal.AbstractAssociativeContainer
iterator, putAllMethods inherited from class io.qt.QtObject
dispose, isDisposedMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliteratorMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
QHash
-
QHash
-
QHash
-
QHash
-
QHash
-
QHash
-
QHash
-
QHash
-
QHash
-
QHash
-
QHash
-
-
Method Details
-
createVariantHash
-
clone
-
capacity
-
clear
-
contains
-
count
-
count
-
constEnd
-
constBegin
-
end
-
begin
-
find
-
insert
-
isEmpty
-
key
-
key
-
keys
-
keys
-
removeAll
-
reserve
-
size
-
squeeze
-
take
-
value
-
value
-
values
-
equals
Description copied from class:QtObjectUsed to check if this object shares the same native counterpart with the other object, i.e. the objects are equals if their native counterparts are identical. Qt value types override this method to make a value comparison. Otherwise it will return the result of calling the super class implementation. -
hashCode
-
toString
-
containsKey
- Specified by:
containsKeyin interfaceMap<K,V>
-
get
-
put
-
remove
-
containsValue
- Specified by:
containsValuein interfaceMap<K,V>
-
writeTo
-
readFrom
-
of
Returns a QHash containing a single mapping.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the mapping's keyv1- the mapping's value- Returns:
- a
QHashcontaining the specified mapping - Throws:
NullPointerException- if the key or the value isnull
-
of
Returns a QHash containing two mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
Returns a QHash containing three mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
Returns a QHash containing four mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's valuek4- the fourth mapping's keyv4- the fourth mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
Returns a QHash containing five mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's valuek4- the fourth mapping's keyv4- the fourth mapping's valuek5- the fifth mapping's keyv5- the fifth mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
public static <K,V> QHash<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6) Returns a QHash containing six mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's valuek4- the fourth mapping's keyv4- the fourth mapping's valuek5- the fifth mapping's keyv5- the fifth mapping's valuek6- the sixth mapping's keyv6- the sixth mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
public static <K,V> QHash<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7) Returns a QHash containing seven mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's valuek4- the fourth mapping's keyv4- the fourth mapping's valuek5- the fifth mapping's keyv5- the fifth mapping's valuek6- the sixth mapping's keyv6- the sixth mapping's valuek7- the seventh mapping's keyv7- the seventh mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
public static <K,V> QHash<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8) Returns a QHash containing eight mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's valuek4- the fourth mapping's keyv4- the fourth mapping's valuek5- the fifth mapping's keyv5- the fifth mapping's valuek6- the sixth mapping's keyv6- the sixth mapping's valuek7- the seventh mapping's keyv7- the seventh mapping's valuek8- the eighth mapping's keyv8- the eighth mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
public static <K,V> QHash<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9) Returns a QHash containing nine mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's valuek4- the fourth mapping's keyv4- the fourth mapping's valuek5- the fifth mapping's keyv5- the fifth mapping's valuek6- the sixth mapping's keyv6- the sixth mapping's valuek7- the seventh mapping's keyv7- the seventh mapping's valuek8- the eighth mapping's keyv8- the eighth mapping's valuek9- the ninth mapping's keyv9- the ninth mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
of
public static <K,V> QHash<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9, K k10, V v10) Returns a QHash containing ten mappings.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
k1- the first mapping's keyv1- the first mapping's valuek2- the second mapping's keyv2- the second mapping's valuek3- the third mapping's keyv3- the third mapping's valuek4- the fourth mapping's keyv4- the fourth mapping's valuek5- the fifth mapping's keyv5- the fifth mapping's valuek6- the sixth mapping's keyv6- the sixth mapping's valuek7- the seventh mapping's keyv7- the seventh mapping's valuek8- the eighth mapping's keyv8- the eighth mapping's valuek9- the ninth mapping's keyv9- the ninth mapping's valuek10- the tenth mapping's keyv10- the tenth mapping's value- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any key or value isnull
-
ofEntries
@SafeVarargs public static <K,V> QHash<K,V> ofEntries(Map.Entry<? extends K, ? extends V> entry0, Map.Entry<? extends K, ? extends V>... entries) Returns a QHash containing keys and values extracted from the given entries.- Type Parameters:
K- theQHash's key typeV- theQHash's value type- Parameters:
entries-java.util.Map.Entrys containing the keys and values from which the map is populated- Returns:
- a
QHashcontaining the specified mappings - Throws:
NullPointerException- if any entry, key, or value isnull, or if theentriesarray isnull
-