Packages

package json

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package codecs
  2. package tokenize

Type Members

  1. trait JsonTransform extends TupleCodecsImpl with IterableCodecTranslator with PredefCodecs with ImplicitCodecDefSupport with RwProjection

Value Members

  1. object JsonTransform extends JsonTransform

    Deserialization always builds an AST equivalent to the input and does not do any JSON DECODE of the escape character.

    Deserialization always builds an AST equivalent to the input and does not do any JSON DECODE of the escape character.

    Serialization always enforces JSON ENCODE. For example, if a JSON string contains a line break, the serialized result will always be a "\\n".

    If you need JSON DECODE, use EncodedJsonTransform.

    When used with an HTTP Server or Client, the communication target may not support JSON ENCODE / DECODE. In this case, it is safer to use EncodedJsonTransform. However, in such cases, if you want to input a backslash as a string, the behavior is not intended, so if this is a problem, check the destination's response/reception format and use an appropriate Transformer.

Ungrouped