Object/Trait

laika.io

Output

Related Docs: trait Output | package io

Permalink

object Output

Factory methods for creating Output instances from different types of IO resources.

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

Type Members

  1. trait Binary extends AnyRef

    Permalink

    Represents any output that can be used as binary output.

  2. trait BinaryOutput extends AnyRef

    Permalink

    A sub-trait for binary output which can only be created from a stream or a file, not from a java.io.Writer instance or from a StringBuilder.

    A sub-trait for binary output which can only be created from a stream or a file, not from a java.io.Writer instance or from a StringBuilder.

    Most renderers write character data, but formats like PDF would require a binary stream to write to.

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 isInstanceOf[T0]: Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  16. def toBuilder(builder: StringBuilder, path: Path = Path.Root): Output

    Permalink

    Creates a new Output instance for the specified StringBuilder.

  17. def toFile(file: File, virtualPath: Path)(implicit codec: Codec): Output with Binary with Closeable

    Permalink
  18. def toFile(file: File)(implicit codec: Codec): Output with Binary with Closeable

    Permalink

    Creates a new Output instance for the specified file.

    Creates a new Output instance for the specified file.

    file

    the file to use as output

    codec

    the character encoding of the file, if not specified the platform default will be used.

  19. def toFile(name: String)(implicit codec: Codec): Output with Binary with Closeable

    Permalink

    Creates a new Output instance for the file with the specified name.

    Creates a new Output instance for the file with the specified name.

    name

    the name of the file

    codec

    the character encoding of the file, if not specified the platform default will be used.

  20. def toStream(stream: OutputStream, path: Path = Path.Root)(implicit codec: Codec): Output with Binary

    Permalink

    Creates a new Output instance for the specified OutputStream.

    Creates a new Output instance for the specified OutputStream.

    stream

    the stream to write to

    path

    the (potentially virtual) path of the output target

    codec

    the character encoding to use for producing the bytes, if not specified the platform default will be used.

  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. def toWriter(writer: Writer, path: Path = Path.Root): Output

    Permalink

    Creates a new Output instance for the specified Writer.

  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