- Type Parameters:
D
- the type of object used by the transcoder
- Enclosing interface:
Transcoder<D>
public static interface Transcoder.MapBuilder<D>
Map builders are used to eventually build a map
They are considered mutable containers, but provide builder semantics.
They are considered mutable containers, but provide builder semantics.
-
Method Summary
-
Method Details
-
put
Puts an entry onto the map- Parameters:
key
- the keyvalue
- the value- Returns:
- this
-
put
Puts an entry onto the map- Parameters:
key
- the string keyvalue
- the value- Returns:
- this
-
build
D build()Build the map with the current values- Returns:
- the completed map of type
Transcoder.MapBuilder
-