- java.lang.Object
-
- io.helidon.dbclient.jsonp.JsonProcessingMapper
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonProcessingMappercreate()javax.json.JsonObjectread(DbRow row)Get a JSON-P representation of this row.List<Object>toIndexedParameters(javax.json.JsonObject value)Map<String,Object>toNamedParameters(javax.json.JsonObject value)
-
-
-
Method Detail
-
create
public static JsonProcessingMapper create()
- Returns:
- a new mapper
-
read
public javax.json.JsonObject read(DbRow row)
Get a JSON-P representation of this row.
-
toNamedParameters
public Map<String,Object> toNamedParameters(javax.json.JsonObject value)
- Specified by:
toNamedParametersin interfaceDbMapper<javax.json.JsonObject>
-
toIndexedParameters
public List<Object> toIndexedParameters(javax.json.JsonObject value)
- Specified by:
toIndexedParametersin interfaceDbMapper<javax.json.JsonObject>
-
-