Class

com.github.scaruby

SFileWriter

Related Doc: package scaruby

Permalink

class SFileWriter extends SWriter

Source
SFileWriter.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SFileWriter
  2. SWriter
  3. SClosableResource
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SFileWriter(path: String, encoding: String)

    Permalink

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. def append(cseq: CharSequence)(implicit start: Int = 0, end: Int = cseq.length()): SFileWriter.this.type

    Permalink

    Writes a sequence to this writer

    Writes a sequence to this writer

    start

    start index of sequence to be written

    end

    end index of sequence to be written

    returns

    this

    Definition Classes
    SFileWriterSWriter
  5. def appendCharacter(c: Char): SFileWriter.this.type

    Permalink

    Writes a character to this writer

    Writes a character to this writer

    returns

    this

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

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def close(): Unit

    Permalink

    Closes this writer.

    Closes this writer. After closing, any method must not be called.

    Definition Classes
    SFileWriterSWriter
  9. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flush(): Unit

    Permalink

    Flushes this writer

    Flushes this writer

    Definition Classes
    SFileWriterSWriter
  13. def foreach[B](block: (SWriter) ⇒ B): B

    Permalink
    Definition Classes
    SClosableResource
  14. def format(format: String, args: AnyRef*)(implicit l: Locale = DefaultLocale): SFileWriter.this.type

    Permalink

    Writes a formatted string to this writer using specified format string and arguments.

    Writes a formatted string to this writer using specified format string and arguments.

    format

    format string

    args

    used by format

    returns

    this

    Definition Classes
    SFileWriterSWriter
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hasError(): Boolean

    Permalink

    Returns whether this has error or not

    Returns whether this has error or not

    Definition Classes
    SFileWriterSWriter
  17. def hashCode(): Int

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  22. def print[A](x: A)(implicit arg0: Show[A]): Unit

    Permalink

    Converts a value to a String using Show type classes and print the String.

    Converts a value to a String using Show type classes and print the String.

    A

    type parameter of the value

    Definition Classes
    SFileWriterSWriter
  23. def printEOL(): Unit

    Permalink

    Prints EOL.

    Prints EOL.

    Definition Classes
    SFileWriterSWriter
  24. def printf(format: String, args: AnyRef*)(implicit l: Locale = DefaultLocale): SFileWriter.this.type

    Permalink

    Writes a formatted string to this writer using specified format string and arguments.

    Writes a formatted string to this writer using specified format string and arguments.

    format

    format string

    args

    used by format

    returns

    this

    Definition Classes
    SFileWriterSWriter
  25. def println[A](x: A)(implicit arg0: Show[A]): Unit

    Permalink

    Converts a value to a String using Show type classes, prints the String, and prints EOL.

    Converts a value to a String using Show type classes, prints the String, and prints EOL.

    A

    type parameter of the value

    Definition Classes
    SFileWriterSWriter
  26. def self: SFileWriter

    Permalink

    <invalid inheritdoc annotation>

    <invalid inheritdoc annotation>

    Definition Classes
    SFileWriterSClosableResource
  27. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  29. def use[B](block: (SWriter) ⇒ B): B

    Permalink
    Definition Classes
    SClosableResource
  30. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def write(buf: Array[Char])(implicit off: Int = 0, len: Int = buf.length): Unit

    Permalink

    Writes buffer to this writer using offset and length

    Writes buffer to this writer using offset and length

    Definition Classes
    SFileWriterSWriter
  34. def writeChar(c: Int): Unit

    Permalink

    Writes character as Char to this writer

    Writes character as Char to this writer

    Definition Classes
    SFileWriterSWriter
  35. def writeString(s: String)(implicit off: Int = 0, len: Int = s.length): Unit

    Permalink

    Writes string to this writer using offset adn length

    Writes string to this writer using offset adn length

    Definition Classes
    SFileWriterSWriter

Inherited from SWriter

Inherited from SClosableResource[SWriter]

Inherited from AnyRef

Inherited from Any

Ungrouped