Trait

scala.sys.process.ProcessBuilder

FileBuilder

Related Doc: package ProcessBuilder

Permalink

trait FileBuilder extends Sink with Source

Used when creating scala.sys.process.ProcessBuilder.Source and/or scala.sys.process.ProcessBuilder.Sink from a file.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileBuilder
  2. Source
  3. Sink
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def #<<(p: ProcessBuilder): ProcessBuilder

    Permalink

    Append the contents of a scala.sys.process.ProcessBuilder to this file

  2. abstract def #<<(i: ⇒ InputStream): ProcessBuilder

    Permalink

    Append the contents of a java.io.InputStream to this file

  3. abstract def #<<(u: URL): ProcessBuilder

    Permalink

    Append the contents from a java.net.URL to this file

  4. abstract def #<<(f: File): ProcessBuilder

    Permalink

    Append the contents of a java.io.File to this file

  5. abstract def toSink: ProcessBuilder

    Permalink
    Attributes
    protected
    Definition Classes
    Sink
  6. abstract def toSource: ProcessBuilder

    Permalink
    Attributes
    protected
    Definition Classes
    Source

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def #<(b: ProcessBuilder): ProcessBuilder

    Permalink

    Reads the output of a scala.sys.process.ProcessBuilder into the input stream of this process.

    Reads the output of a scala.sys.process.ProcessBuilder into the input stream of this process.

    Definition Classes
    Sink
  4. def #<(in: ⇒ InputStream): ProcessBuilder

    Permalink

    Reads the given InputStream into the input stream of this process.

    Reads the given InputStream into the input stream of this process. The argument is call-by-name, so the stream is recreated, read, and closed each time this process is executed.

    Definition Classes
    Sink
  5. def #<(f: URL): ProcessBuilder

    Permalink

    Reads the given URL into the input stream of this process.

    Reads the given URL into the input stream of this process.

    Definition Classes
    Sink
  6. def #<(f: File): ProcessBuilder

    Permalink

    Reads the given file into the input stream of this process.

    Reads the given file into the input stream of this process.

    Definition Classes
    Sink
  7. def #>(b: ProcessBuilder): ProcessBuilder

    Permalink

    Writes the output stream of this process to a scala.sys.process.ProcessBuilder.

    Writes the output stream of this process to a scala.sys.process.ProcessBuilder.

    Definition Classes
    Source
  8. def #>(out: ⇒ OutputStream): ProcessBuilder

    Permalink

    Writes the output stream of this process to the given OutputStream.

    Writes the output stream of this process to the given OutputStream. The argument is call-by-name, so the stream is recreated, written, and closed each time this process is executed.

    Definition Classes
    Source
  9. def #>(f: File): ProcessBuilder

    Permalink

    Writes the output stream of this process to the given file.

    Writes the output stream of this process to the given file.

    Definition Classes
    Source
  10. def #>>(f: File): ProcessBuilder

    Permalink

    Appends the output stream of this process to the given file.

    Appends the output stream of this process to the given file.

    Definition Classes
    Source
  11. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def cat: ProcessBuilder

    Permalink

    Returnes a scala.sys.process.ProcessBuilder representing this Source.

    Returnes a scala.sys.process.ProcessBuilder representing this Source.

    Definition Classes
    Source
  14. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Inherited from Source

Inherited from Sink

Inherited from AnyRef

Inherited from Any

Ungrouped