laika.io

Output

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
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait Binary extends AnyRef

    Represents any output that can be used as binary output.

  2. trait BinaryOutput extends AnyRef

    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.

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  18. def toBuilder(builder: StringBuilder): Output

    Creates a new Output instance for the specified StringBuilder.

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

    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.

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

    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.

  21. def toStream(stream: OutputStream)(implicit codec: Codec): Output with Binary

    Creates a new Output instance for the specified OutputStream.

    Creates a new Output instance for the specified OutputStream.

    stream

    the stream to write to

    codec

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

  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. def toWriter(writer: Writer): Output

    Creates a new Output instance for the specified Writer.

  24. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped