Package com.cedarsoftware.util.io
Class Writers.PrimitiveUtf8StringWriter
- java.lang.Object
-
- com.cedarsoftware.util.io.Writers.PrimitiveTypeWriter
-
- com.cedarsoftware.util.io.Writers.PrimitiveUtf8StringWriter
-
- All Implemented Interfaces:
JsonWriter.JsonClassWriter
,JsonWriter.JsonClassWriterBase
- Direct Known Subclasses:
Writers.ClassWriter
,Writers.EnumAsPrimitiveWriter
,Writers.JsonStringWriter
,Writers.StringBufferWriter
,Writers.StringBuilderWriter
,Writers.TimeZoneWriter
,Writers.URLWriter
- Enclosing class:
- Writers
public static class Writers.PrimitiveUtf8StringWriter extends Writers.PrimitiveTypeWriter
Used as a template to write out primitive String types. Uses default key of "value" and encodes the string.
-
-
Constructor Summary
Constructors Constructor Description PrimitiveUtf8StringWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
extractString(Object o)
void
writePrimitiveForm(Object o, Writer output)
This method will be called to write the item in primitive form (if the response to hasPrimitiveForm() was true).-
Methods inherited from class com.cedarsoftware.util.io.Writers.PrimitiveTypeWriter
getKey, hasPrimitiveForm, write
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.cedarsoftware.util.io.JsonWriter.JsonClassWriter
getWriter, write, writePrimitiveForm
-
-
-
-
Method Detail
-
writePrimitiveForm
public void writePrimitiveForm(Object o, Writer output) throws IOException
Description copied from interface:JsonWriter.JsonClassWriter
This method will be called to write the item in primitive form (if the response to hasPrimitiveForm() was true). Override this method if you have a primitive form and need to access the arguments that kicked off the JsonWriter.- Parameters:
o
- Object to be writtenoutput
- Writer destination to where the actual JSON is written.- Throws:
IOException
- if thrown by the writer. Will be caught at a higher level and wrapped in JsonIoException.
-
-