Attributes

interface Attributes : Map<K, V> (source)

Represent the attributes of a manifest section.

Functions

Link copied to clipboard
abstract fun clear()
Link copied to clipboard
open fun compute(p: K, p1: BiFunction<in K, in V, out V>): V
Link copied to clipboard
open fun computeIfAbsent(p: K, p1: (in K) -> out V): V
Link copied to clipboard
open fun computeIfPresent(p: K, p1: BiFunction<in K, in V, out V>): V
Link copied to clipboard
abstract fun containsKey(p: Any): Boolean
Link copied to clipboard
abstract fun containsValue(p: Any): Boolean
Link copied to clipboard
open fun <K, V> copyOf(p: Map<out K, out V>): Map<K, V>
Link copied to clipboard
open fun <K, V> entry(p: K, p1: V): Map.Entry<K, V>
Link copied to clipboard
abstract fun entrySet(): Set<Map.Entry<K, V>>
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
open fun forEach(p: BiConsumer<in K, in V>)
Link copied to clipboard
abstract fun get(p: Any): V
Link copied to clipboard
open fun getOrDefault(p: Any, p1: V): V
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun isEmpty(): Boolean
Link copied to clipboard
abstract fun keySet(): Set<K>
Link copied to clipboard
open fun merge(p: K, p1: V, p2: BiFunction<in V, in V, out V>): V
Link copied to clipboard
open fun <K, V> of(): Map<K, V>
Link copied to clipboard
open fun <K, V> ofEntries(p: Array<Map.Entry<out K, out V>>): Map<K, V>
Link copied to clipboard
abstract fun put(p: K, p1: V): V
Link copied to clipboard
abstract fun putAll(p: Map<out K, out V>)
Link copied to clipboard
open fun putIfAbsent(p: K, p1: V): V
Link copied to clipboard
abstract fun remove(p: Any): V
open fun remove(p: Any, p1: Any): Boolean
Link copied to clipboard
open fun replace(p: K, p1: V): V
open fun replace(p: K, p1: V, p2: V): Boolean
Link copied to clipboard
open fun replaceAll(p: BiFunction<in K, in V, out V>)
Link copied to clipboard
abstract fun size(): Int
Link copied to clipboard
abstract fun values(): Collection<V>