public static class StringValues.DefaultImpls
| Modifier and Type | Method and Description |
|---|---|
static boolean |
contains(StringValues $this,
java.lang.String name)
Checks if the given name exists in the map
|
static boolean |
contains(StringValues $this,
java.lang.String name,
java.lang.String value)
Checks if the given name and value pair exists in the map
|
static void |
forEach(StringValues $this,
kotlin.jvm.functions.Function2<? super java.lang.String,? super java.util.List<java.lang.String>,kotlin.Unit> body)
Iterates over all entries in this map and calls body for each pair
|
static java.lang.String |
get(StringValues $this,
java.lang.String name)
Gets first value from the list of values associated with a name, or null if the name is not present
|
public static java.lang.String get(StringValues $this, java.lang.String name)
Gets first value from the list of values associated with a name, or null if the name is not present
public static boolean contains(StringValues $this, java.lang.String name)
Checks if the given name exists in the map
public static boolean contains(StringValues $this, java.lang.String name, java.lang.String value)
Checks if the given name and value pair exists in the map
public static void forEach(StringValues $this, kotlin.jvm.functions.Function2<? super java.lang.String,? super java.util.List<java.lang.String>,kotlin.Unit> body)
Iterates over all entries in this map and calls body for each pair
Can be optimized in implementations