Uses of Interface
com.cedarsoftware.io.WriteOptions
Packages that use WriteOptions
-
Uses of WriteOptions in com.cedarsoftware.io
Methods in com.cedarsoftware.io that return WriteOptionsModifier and TypeMethodDescriptionWriteOptionsBuilder.build()Seal the instance of this class so that no more changes can be made to it.static WriteOptionsWriteOptionsBuilder.getDefaultWriteOptions()JsonWriter.getWriteOptions()WriterContext.getWriteOptions()Gets the write options for the current serializationMethods in com.cedarsoftware.io with parameters of type WriteOptionsModifier and TypeMethodDescriptionstatic <T> TJsonIo.deepCopy(Object source, ReadOptions readOptions, WriteOptions writeOptions) Copy an object graph using JSON.static StringJsonIo.formatJson(String json, ReadOptions readOptions, WriteOptions writeOptions) Format the passed in JSON into multi-line, indented format, commonly used in JSON online editors.static voidJsonIo.toJson(OutputStream out, Object source, WriteOptions writeOptions) Convert the passed in Java source object to JSON.static StringJsonIo.toJson(Object srcObject, WriteOptions writeOptions) Convert the passed in Java source object to JSON.Constructors in com.cedarsoftware.io with parameters of type WriteOptionsModifierConstructorDescriptionJsonWriter(OutputStream out, WriteOptions writeOptions) Copy another WriteOptions as a starting point.