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
    Enclosing class:
    PMap<Key,​Value>

    public static interface PMap.Builder<K,​V>
    extends PBuilder<java.util.Map<K,​V>>
    Container builder to be used in serialization.
    • Method Detail

      • putAll

        @Nonnull
        PMap.Builder<K,​V> putAll​(@Nonnull
                                       java.util.Map<K,​V> map)
      • build

        @Nonnull
        java.util.Map<K,​V> build()
        Description copied from interface: PBuilder
        Build the instance value.
        Specified by:
        build in interface PBuilder<K>
        Returns:
        The instance value.