Package com.cedarsoftware.util.io
Class Writers.PrimitiveTypeWriter
- java.lang.Object
-
- com.cedarsoftware.util.io.Writers.PrimitiveTypeWriter
-
- All Implemented Interfaces:
JsonWriter.JsonClassWriter,JsonWriter.JsonClassWriterBase
- Direct Known Subclasses:
Writers.PrimitiveUtf8StringWriter,Writers.PrimitiveValueWriter
- Enclosing class:
- Writers
public static class Writers.PrimitiveTypeWriter extends Object implements JsonWriter.JsonClassWriter
-
-
Constructor Summary
Constructors Constructor Description PrimitiveTypeWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected StringgetKey()booleanhasPrimitiveForm()voidwrite(Object obj, boolean showType, Writer output)When write() is called, it is expected that subclasses will write the appropriate JSON to the passed in Writer.-
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, writePrimitiveForm
-
-
-
-
Method Detail
-
getKey
protected String getKey()
-
write
public void write(Object obj, boolean showType, Writer output) throws IOException
Description copied from interface:JsonWriter.JsonClassWriterWhen write() is called, it is expected that subclasses will write the appropriate JSON to the passed in Writer.- Specified by:
writein interfaceJsonWriter.JsonClassWriter- Parameters:
obj- Object to be written in JSON format.showType- boolean indicating whether to show @type.output- 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.
-
hasPrimitiveForm
public boolean hasPrimitiveForm()
- Specified by:
hasPrimitiveFormin interfaceJsonWriter.JsonClassWriter- Returns:
- boolean true if the class being written has a primitive (non-object) form. Default is false since most custom writers will not have a primitive form.
-
-