Interface PMap.Builder<K,V>
-
- Type Parameters:
K- The key type.V- The value type.
- All Superinterfaces:
PBuilder<java.util.Map<K,V>>
- All Known Implementing Classes:
PMap.DefaultBuilder,PMap.SortedBuilder
public static interface PMap.Builder<K,V> extends PBuilder<java.util.Map<K,V>>
Container builder to be used in serialization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<K,V>build()Build the instance value.PMap.Builder<K,V>put(K key, V value)PMap.Builder<K,V>putAll(java.util.Map<K,V> map)
-
-
-
Method Detail
-
put
@Nonnull PMap.Builder<K,V> put(@Nonnull K key, @Nonnull V value)
-
putAll
@Nonnull PMap.Builder<K,V> putAll(@Nonnull java.util.Map<K,V> map)
-
-