Java io.vertx.core.shareddata LocalMap fields, constructors, methods, implement or subclass

Example usage for Java io.vertx.core.shareddata LocalMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.vertx.core.shareddata LocalMap.

The text is from its open source code.

Method

Set>entrySet()
Returns a Set view of the mappings contained in this map.
Vget(Object key)
Get a value from the map
SetkeySet()
Vput(K key, V value)
Put an entry in the map
VputIfAbsent(K key, V value)
Put the entry only if there is no existing entry for that key
Vremove(Object key)
Remove an entry from the map
booleanreplace(K key, V oldValue, V newValue)
Replaces the entry for the specified key only if currently mapped to the specified value.
intsize()
Get the size of the map
Collectionvalues()