- 
- All Superinterfaces:
- Builder<Map.Entry<K,V>,O>,- PairBuilder<K,V,O>
 - All Known Implementing Classes:
- UriQueryBuilder
 
 public interface EntryBuilder<K,V,O> extends PairBuilder<K,V,O>, Builder<Map.Entry<K,V>,O> Type that accumulates map entries, and binds an output result of typeO.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanadd(Map.Entry<K,V> input)Adds a single entry to this builder, returningtrueif the state of the builder changed.booleanadd(K key, V value)Adds an input pair to this builder, returningtrueif the state of the builder changed.booleanaddAll(Collection<? extends Map.Entry<K,V>> inputs)Adds multiple entries to this builder, returningtrueif the state of the builder changed.booleanaddAll(Map<? extends K,? extends V> inputs)Adds multiple entries to this builder, returningtrueif the state of the builder changed.Obind()Returns the output result of this builder.
 
- 
- 
- 
Method Detail- 
addboolean add(K key, V value) Adds an input pair to this builder, returningtrueif the state of the builder changed.- Specified by:
- addin interface- PairBuilder<K,V,O>
 
 - 
addboolean add(Map.Entry<K,V> input) Adds a single entry to this builder, returningtrueif the state of the builder changed.
 - 
addAllboolean addAll(Collection<? extends Map.Entry<K,V>> inputs) Adds multiple entries to this builder, returningtrueif the state of the builder changed.
 - 
addAllboolean addAll(Map<? extends K,? extends V> inputs) Adds multiple entries to this builder, returningtrueif the state of the builder changed.
 
- 
 
-