K
- the maps key typeV
- the maps value typepublic static interface Maps.MapBuilder<K,V>
Typical usage:
Map<K,V> result = Maps.of("key1", value1)
.and("key2", value2)
// ...
.build();
Maps.MapBuilder<K,V> and(K key, V value)
key
- the key of an map entry to be addedvalue
- the value of map entry to be addedCopyright © 2014–2020 jsonwebtoken.io. All rights reserved.