open class StringValuesSingleImpl : StringValues
StringValuesSingleImpl(caseInsensitiveName: Boolean, name: String, values: List<String>) |
open val caseInsensitiveName: Boolean
Specifies if map has case-sensitive or case-insensitive names |
|
val name: String |
|
val values: List<String> |
open fun contains(name: String): Boolean
Checks if the given name exists in the map open fun contains(name: String, value: String): Boolean
|
|
open fun entries(): Set<Entry<String, List<String>>>
Gets all entries from the map |
|
open fun equals(other: Any?): Boolean |
|
open fun forEach(body: (String, List<String>) -> Unit): Unit
Iterates over all entries in this map and calls body for each pair |
|
open fun get(name: String): String?
Gets first value from the list of values associated with a name, or null if the name is not present |
|
open fun getAll(name: String): List<String>?
Gets all values associated with the name, or null if the name is not present |
|
open fun hashCode(): Int |
|
open fun isEmpty(): Boolean
Checks if this map is empty |
|
open fun names(): Set<String>
Gets all names from the map |
|
open fun toString(): String |
fun StringValues.filter(keepEmpty: Boolean = false, predicate: (String, String) -> Boolean): StringValues
Create a new instance of StringValues filtered by the specified predicate |
|
fun StringValues.flattenEntries(): List<Pair<String, String>>
Copy values to a list of pairs |
|
fun StringValues.flattenForEach(block: (String, String) -> Unit): Unit
Invoke block function for every value pair |
|
fun StringValues.toMap(): Map<String, List<String>>
Copy values to a new independent map |