Object

scalismo.faces.io

RenderParameterIO

Related Doc: package io

Permalink

object RenderParameterIO

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RenderParameterIO
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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
    @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  14. def read(file: File): Try[RenderParameter]

    Permalink

    read RenderParameter from a json file

  15. def readASTFromStream(stream: InputStream): JsValue

    Permalink

    parse json from stream as abstract syntax tree (spray's JsValue)

  16. def readFromASTWithPath[A](json: JsValue, path: String)(implicit format: JsonFormat[A]): Try[A]

    Permalink

    read a parameter type from a path in a nested json file, path format: field1/field2/field3

    read a parameter type from a path in a nested json file, path format: field1/field2/field3

    json

    JsValue containing full ASTree

    path

    path in the json tree, format: field1/field2/field3

  17. def readFromStream(stream: InputStream): Try[RenderParameter]

    Permalink

    read RenderParameter from a json file

  18. def readFromStreamWithFormat[A](stream: InputStream)(implicit format: RootJsonFormat[A]): Try[A]

    Permalink

    read a Parameter type from a json file, needs the json format, e.g.

    read a Parameter type from a json file, needs the json format, e.g. RenderParameterJSONFormatLegacy._

  19. def readFromStreamWithPath[A](stream: InputStream, path: String)(implicit format: JsonFormat[A]): Try[A]

    Permalink

    read a parameter type from a path in a nested json file, path format: field1/field2/field3

    read a parameter type from a path in a nested json file, path format: field1/field2/field3

    stream

    File to read from

    path

    path in the json tree, format: field1/field2/field3

  20. def readWithFormat[A](file: File)(implicit format: RootJsonFormat[A]): Try[A]

    Permalink

    read a Parameter type from a json file, needs the json format, e.g.

    read a Parameter type from a json file, needs the json format, e.g. RenderParameterJSONFormatLegacy._

  21. def readWithPath[A](file: File, path: String)(implicit format: JsonFormat[A]): Try[A]

    Permalink

    read a parameter type from a path in a nested json file, path format: field1/field2/field3

    read a parameter type from a path in a nested json file, path format: field1/field2/field3

    file

    File to read from

    path

    path in the json tree, format: field1/field2/field3

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  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( ... )
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def write(parameter: RenderParameter, file: File): Try[Unit]

    Permalink

    write a RenderParameter to a file

  28. def writeASTToStream(jasonAST: JsValue, stream: OutputStream): Unit

    Permalink

    write an abstract syntax tree (spray's JsValue) to a file (pretty printed)

  29. def writeToASTWithPath[A](parameter: A, path: String)(implicit format: JsonFormat[A]): JsValue

    Permalink

    write a parameter to a file at a given path

    write a parameter to a file at a given path

    parameter

    Parameter to write

    path

    path inside json, format: field1/field2/field3

  30. def writeToStream(parameter: RenderParameter, stream: OutputStream): Try[Unit]

    Permalink

    write a RenderParameter to a file

  31. def writeToStreamWithFormat[A](parameter: A, stream: OutputStream)(implicit format: RootJsonFormat[A]): Try[Unit]

    Permalink

    write a parameter type to a file, needs a json format for the type, e.g.

    write a parameter type to a file, needs a json format for the type, e.g. RenderParameterJSONFormatLegacy._

  32. def writeToStreamWithPath[A](parameter: A, stream: OutputStream, path: String)(implicit format: JsonFormat[A]): Try[Unit]

    Permalink

    write a parameter to a file at a given path

    write a parameter to a file at a given path

    parameter

    Parameter to write

    stream

    Stream to write

    path

    path inside json, format: field1/field2/field3

  33. def writeWithFormat[A](parameter: A, file: File)(implicit format: RootJsonFormat[A]): Try[Unit]

    Permalink

    write a parameter type to a file, needs a json format for the type, e.g.

    write a parameter type to a file, needs a json format for the type, e.g. RenderParameterJSONFormatLegacy._

  34. def writeWithPath[A](parameter: A, file: File, path: String)(implicit format: JsonFormat[A]): Try[Unit]

    Permalink

    write a parameter to a file at a given path

    write a parameter to a file at a given path

    parameter

    Parameter to write

    file

    File to write

    path

    path inside json, format: field1/field2/field3

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped