Class/Object

com.avsystem.commons.serialization.json

JsonStringOutput

Related Docs: object JsonStringOutput | package json

Permalink

final class JsonStringOutput extends BaseJsonOutput with OutputAndSimpleOutput

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsonStringOutput
  2. OutputAndSimpleOutput
  3. SimpleOutput
  4. Output
  5. BaseJsonOutput
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JsonStringOutput(builder: commons.JStringBuilder, options: JsonOptions = JsonOptions.Default, depth: Int = 0)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def indent(builder: commons.JStringBuilder, indentSize: commons.OptArg[Int], depth: Int): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BaseJsonOutput
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def keepsMetadata(metadata: InputMetadata[_]): Boolean

    Permalink

    Determines whether serialization format implemented by this Output preserves particular arbitrary "metadata" which is identified by InputMetadata which is usually an object (e.g.

    Determines whether serialization format implemented by this Output preserves particular arbitrary "metadata" which is identified by InputMetadata which is usually an object (e.g. companion object of metadata value type T). An example of InputMetadata is JsonType supported by JsonStringOutput.

    If this method returns true then codec may optimize its encoded format and assume that a corresponding Input implementation will return a non-empty Opt from its readMetadata implementation when passed the same InputMetadata identifier. If this method returns false then this Output does not support this medatata type and codec should fall back to some other serialization strategy.

    Definition Classes
    JsonStringOutputOutput
  14. def legacyOptionEncoding: Boolean

    Permalink

    This ugly workaround has been introduced when standard Option encoding changed from zero-or-one element list encoding to unwrapped-or-null encoding which effectively disallowed serializing null and Some(null).

    This ugly workaround has been introduced when standard Option encoding changed from zero-or-one element list encoding to unwrapped-or-null encoding which effectively disallowed serializing null and Some(null). If some Output implementation still wants to use the list encoding, it may do it by overriding this method and returning true.

    Definition Classes
    Output
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. final def toHex(nibble: Int): Char

    Permalink
    Attributes
    protected
    Definition Classes
    BaseJsonOutput
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. def writeBigDecimal(bigDecimal: BigDecimal): Unit

    Permalink

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    JsonStringOutputSimpleOutput
  25. def writeBigInt(bigInt: BigInt): Unit

    Permalink

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    JsonStringOutputSimpleOutput
  26. def writeBinary(binary: Array[Byte]): Unit

    Permalink

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    JsonStringOutputSimpleOutput
  27. def writeBoolean(boolean: Boolean): Unit

    Permalink
    Definition Classes
    JsonStringOutputSimpleOutput
  28. def writeByte(byte: Byte): Unit

    Permalink
    Definition Classes
    SimpleOutput
  29. def writeChar(char: Char): Unit

    Permalink
    Definition Classes
    SimpleOutput
  30. def writeCustom[T](typeMarker: TypeMarker[T], value: T): Boolean

    Permalink

    Attempts to write some arbitrary custom "native" value that this output may or may not support.

    Attempts to write some arbitrary custom "native" value that this output may or may not support. The custom type is identified by an instance of TypeMarker which is usually an object (e.g. companion object of the custom T type itself). This way Input and Output implementations may support other native types than the ones supported by default by Input and Output interfaces.

    Codecs may use this method to optimize encoded format in case it it possible with particular Output implementation. GenCodec may generally assume that if this method returns true then corresponding Input will return a non-empty Opt from readCustom method.

    false returned by this method indicates that this output does not support this particular type. In such situation the codec must fall back to some other strategy. If the native type is supported but there was some error writing it then a WriteFailure should be thrown instead of returning false.

    Definition Classes
    JsonStringOutputOutput
  31. def writeDouble(double: Double): Unit

    Permalink
    Definition Classes
    JsonStringOutputSimpleOutput
  32. def writeFloat(float: Float): Unit

    Permalink
    Definition Classes
    JsonStringOutputSimpleOutput
  33. def writeInt(int: Int): Unit

    Permalink
    Definition Classes
    JsonStringOutputSimpleOutput
  34. final def writeJsonString(builder: commons.JStringBuilder, str: String, ascii: Boolean): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BaseJsonOutput
  35. def writeList(): JsonListOutput

    Permalink
    Definition Classes
    JsonStringOutputOutput
  36. def writeLong(long: Long): Unit

    Permalink
    Definition Classes
    JsonStringOutputSimpleOutput
  37. def writeNull(): Unit

    Permalink
    Definition Classes
    JsonStringOutputOutput
  38. def writeObject(): JsonObjectOutput

    Permalink
    Definition Classes
    JsonStringOutputOutput
  39. def writeRawJson(json: String): Unit

    Permalink
  40. def writeShort(short: Short): Unit

    Permalink
    Definition Classes
    SimpleOutput
  41. final def writeSimple(): SimpleOutput

    Permalink
    Definition Classes
    OutputAndSimpleOutputOutput
  42. final def writeSpaces(builder: commons.JStringBuilder, n: Int): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BaseJsonOutput
    Annotations
    @tailrec()
  43. def writeString(str: String): Unit

    Permalink

    Value written MUST NOT be null

    Value written MUST NOT be null

    Definition Classes
    JsonStringOutputSimpleOutput
  44. def writeTimestamp(millis: Long): Unit

    Permalink
    Definition Classes
    JsonStringOutputSimpleOutput

Inherited from OutputAndSimpleOutput

Inherited from SimpleOutput

Inherited from Output

Inherited from BaseJsonOutput

Inherited from AnyRef

Inherited from Any

Ungrouped