Trait

com.rayrobdod.json.builder.PrettyJsonBuilder

PrettyParams

Related Doc: package PrettyJsonBuilder

Permalink

trait PrettyParams extends AnyRef

The whitespace strings that will appear between significant portions of a serialized json file

Source
PrettyJsonBuilder.scala
Since

3.0

See also

http://argonaut.io/scaladocs/#argonaut.PrettyParams

Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PrettyParams
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def colonLeft(level: Int): String

    Permalink

    The string that will appear on the left of a ':' mapping separator.

    The string that will appear on the left of a ':' mapping separator. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  2. abstract def colonRight(level: Int): String

    Permalink

    The string that will appear on the right of a ':' mapping separator.

    The string that will appear on the right of a ':' mapping separator. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  3. abstract def commaLeft(level: Int): String

    Permalink

    The string that will appear on the left of a ',' item separator.

    The string that will appear on the left of a ',' item separator. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  4. abstract def commaRight(level: Int): String

    Permalink

    The string that will appear on the right of a ',' item separator.

    The string that will appear on the right of a ',' item separator. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  5. abstract def lbraceLeft(level: Int): String

    Permalink

    The string that will appear on the left of a '{' object start.

    The string that will appear on the left of a '{' object start. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  6. abstract def lbraceRight(level: Int): String

    Permalink

    The string that will appear on the right of a '{' object start.

    The string that will appear on the right of a '{' object start. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  7. abstract def lbracketLeft(level: Int): String

    Permalink

    The string that will appear on the left of a '[' array start.

    The string that will appear on the left of a '[' array start. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  8. abstract def lbracketRight(level: Int): String

    Permalink

    The string that will appear on the right of a '[' array start.

    The string that will appear on the right of a '[' array start. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  9. abstract def rbraceLeft(level: Int): String

    Permalink

    The string that will appear on the left of a '}' object end.

    The string that will appear on the left of a '}' object end. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  10. abstract def rbraceRight(level: Int): String

    Permalink

    The string that will appear on the right of a '}' object end.

    The string that will appear on the right of a '}' object end. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  11. abstract def rbracketLeft(level: Int): String

    Permalink

    The string that will appear on the left of a ']' array end.

    The string that will appear on the left of a ']' array end. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

  12. abstract def rbracketRight(level: Int): String

    Permalink

    The string that will appear on the right of a ']' array end.

    The string that will appear on the right of a ']' array end. This value must contain only whitespace characters.

    level

    the indentation depth to create a string for.

Concrete 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 colon(level: Int): String

    Permalink

    The string that includes a ':' and the surrounding whitespace.

    The string that includes a ':' and the surrounding whitespace.

    level

    the indentation depth to create a string for.

  7. final def comma(level: Int): String

    Permalink

    The string that includes a ',' and the surrounding whitespace.

    The string that includes a ',' and the surrounding whitespace.

    level

    the indentation depth to create a string for.

  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def lbrace(level: Int): String

    Permalink

    The string that includes a '[' and the surrounding whitespace.

    The string that includes a '[' and the surrounding whitespace.

    level

    the indentation depth to create a string for.

  15. final def lbracket(level: Int): String

    Permalink

    The string that includes a '{' and the surrounding whitespace.

    The string that includes a '{' and the surrounding whitespace.

    level

    the indentation depth to create a string for.

  16. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  19. final def rbrace(level: Int): String

    Permalink

    The string that includes a ']' and the surrounding whitespace.

    The string that includes a ']' and the surrounding whitespace.

    level

    the indentation depth to create a string for.

  20. final def rbracket(level: Int): String

    Permalink

    The string that includes a '}' and the surrounding whitespace.

    The string that includes a '}' and the surrounding whitespace.

    level

    the indentation depth to create a string for.

  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped