Example usage for Java io.vertx.core MultiMap fields, constructors, methods, implement or subclass
The text is from its open source code.
MultiMap | add(String name, String value) Adds a new value with the specified name and value. |
MultiMap | add(CharSequence name, CharSequence value) Like #add(String,String) but accepting CharSequence as parameters |
MultiMap | add(String name, Iterable Adds a new values under the specified name |
MultiMap | add(CharSequence name, Iterable Like #add(String,Iterable) but accepting CharSequence as parameters |
MultiMap | caseInsensitiveMultiMap() Create a multi-map implementation with case insensitive keys, for instance it can be used to hold some HTTP headers. |
boolean | contains(String name) Checks to see if there is a value with the specified name |
boolean | contains(CharSequence name) Like #contains(String) but accepting a CharSequence as a parameter |
List | entries() Returns all entries in the multi-map. |
String | get(CharSequence name) |
String | get(String name) Returns the value of with the specified name. |
List | getAll(String name) Returns the values with the specified name |
List | getAll(CharSequence name) Like #getAll(String) but accepting a CharSequence as a parameter |
boolean | isEmpty() Return true if empty |
Set | names() Gets a immutable java.util.Set of all names |
MultiMap | remove(String name) Removes the value with the given name |
MultiMap | remove(CharSequence name) Like #remove(String) but accepting CharSequence as parameters |
MultiMap | set(String name, String value) Sets a value under the specified name. |
MultiMap | set(CharSequence name, CharSequence value) Like #set(String,String) but accepting CharSequence as parameters |
MultiMap | set(String name, Iterable Sets values for the specified name. |
MultiMap | set(CharSequence name, Iterable Like #set(String,Iterable) but accepting CharSequence as parameters |
int | size() Return the number of keys. |