TagBuilder

interface TagBuilder : MutableList<KeyValue> (source)

Properties

Link copied to clipboard
abstract override val size: Int

Functions

Link copied to clipboard
abstract override fun add(element: KeyValue): Boolean
abstract fun add(index: Int, element: KeyValue)
Link copied to clipboard
abstract override fun addAll(elements: Collection<KeyValue>): Boolean
abstract fun addAll(index: Int, elements: Collection<KeyValue>): Boolean
Link copied to clipboard
open override fun addFirst(p0: KeyValue)
Link copied to clipboard
open override fun addLast(p0: KeyValue)
Link copied to clipboard
abstract override fun clear()
Link copied to clipboard
abstract operator override fun contains(element: KeyValue): Boolean
Link copied to clipboard
abstract override fun containsAll(elements: Collection<KeyValue>): Boolean
Link copied to clipboard
open fun forEach(p0: Consumer<in KeyValue>)
Link copied to clipboard
abstract operator fun get(index: Int): KeyValue
Link copied to clipboard
abstract fun indexOf(element: KeyValue): Int
Link copied to clipboard
abstract override fun isEmpty(): Boolean
Link copied to clipboard
abstract operator override fun iterator(): Iterator<KeyValue>
Link copied to clipboard
abstract fun lastIndexOf(element: KeyValue): Int
Link copied to clipboard
abstract override fun listIterator(): MutableListIterator<KeyValue>
abstract override fun listIterator(index: Int): MutableListIterator<KeyValue>
Link copied to clipboard
open fun parallelStream(): Stream<KeyValue>
Link copied to clipboard
abstract override fun remove(element: KeyValue): Boolean
Link copied to clipboard
abstract override fun removeAll(elements: Collection<KeyValue>): Boolean
Link copied to clipboard
abstract fun removeAt(index: Int): KeyValue
Link copied to clipboard
open override fun removeFirst(): KeyValue
Link copied to clipboard
open fun removeIf(p0: Predicate<in KeyValue>): Boolean
Link copied to clipboard
open override fun removeLast(): KeyValue
Link copied to clipboard
open fun replaceAll(p0: UnaryOperator<KeyValue>)
Link copied to clipboard
abstract override fun retainAll(elements: Collection<KeyValue>): Boolean
Link copied to clipboard
open override fun reversed(): MutableList<KeyValue>
Link copied to clipboard
abstract operator fun set(index: Int, element: KeyValue): KeyValue
Link copied to clipboard
open fun sort(p0: Comparator<in KeyValue>)
Link copied to clipboard
open override fun spliterator(): Spliterator<KeyValue>
Link copied to clipboard
open fun stream(): Stream<KeyValue>
Link copied to clipboard
abstract override fun subList(fromIndex: Int, toIndex: Int): MutableList<KeyValue>
Link copied to clipboard
open infix fun String.tagTo(value: Boolean): KeyValue
open infix fun String.tagTo(value: Double): KeyValue
open infix fun String.tagTo(value: Long): KeyValue
open infix fun String.tagTo(value: String): KeyValue
open infix fun String.tagTo(value: ByteString): KeyValue