-
- All Known Subinterfaces:
EntryBuilder<K,V,O>
- All Known Implementing Classes:
AbstractRecordOutlet
,AbstractRecordStreamlet
,DownlinkRecord
,DownlinkStreamlet
,ListDownlinkRecord
,MapDownlinkRecord
,Record
,RecordModel
,RecordScope
,RecordStreamlet
,UriQueryBuilder
,ValueDownlinkRecord
public interface PairBuilder<K,V,O>
Type that accumulates pairs of input values, and binds an output result of typeO
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
add(K key, V value)
Adds an input pair to this builder, returningtrue
if the state of the builder changed.O
bind()
Returns the output result of this builder.
-