Package com.fasterxml.jackson.jr.ob.api
Interface ValueWriter
-
- All Known Implementing Classes:
BeanWriter
public interface ValueWriter
- Since:
- 2.10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>
valueType()
Accessor for non-generic (type-erased) type of values this reader produces from input.void
writeValue(JSONWriter context, com.fasterxml.jackson.core.JsonGenerator g, java.lang.Object value)
-
-
-
Method Detail
-
writeValue
void writeValue(JSONWriter context, com.fasterxml.jackson.core.JsonGenerator g, java.lang.Object value) throws java.io.IOException
- Throws:
java.io.IOException
-
valueType
java.lang.Class<?> valueType()
Accessor for non-generic (type-erased) type of values this reader produces from input.- Since:
- 2.10
-
-