MapBuilder |
MapBuilder.add(String fieldName,
boolean include,
String value) |
Adds the string value to the provided map under the provided field name,
if it should be included.
|
MapBuilder |
MapBuilder.add(String fieldName,
boolean include,
Supplier<String> supplier) |
Adds the string value to the provided map under the provided field name,
if it should be included.
|
MapBuilder |
MapBuilder.add(String fieldName,
boolean include,
Map<String,?> mapValue) |
Adds the map to the provided map under the provided field name if it's should be included.
|
MapBuilder |
MapBuilder.addMap(String fieldName,
boolean include,
Supplier<Map<String,?>> supplier) |
Adds the map value to the provided map under the provided field name, if it should be
included.
|
MapBuilder |
MapBuilder.addNumber(String fieldName,
boolean include,
Number number) |
Adds the number to the provided map under the provided field name if it's should be included.
|
MapBuilder |
MapBuilder.addNumber(String fieldName,
boolean include,
Supplier<Number> supplier) |
Adds the number value to the provided map under the provided field name,
if it should be included.
|
MapBuilder |
MapBuilder.addTimestamp(String fieldName,
boolean include,
long timestamp) |
Adds and optionally formats the timestamp to the provided map under the provided field name,
if it's should be included.
|