Bluestep JS Documentation
    Preparing search index...

    Class Writer

    Abstract class for writing to character streams. The only methods that a subclass must implement are write(string, number, number), flush(), and close(). Most subclasses, however, will override some of the methods defined here in order to provide higher efficiency, additional functionality, or both.

    See java.io.Writer for full documentation

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Appends the specified string to this writer.

      Parameters

      • str: string
      • Optionalstart: number

        Start of substring in str to write

      • Optionalend: number

        End of substring in str to write

      Returns Writer

    • Closes the stream, flushing it first.

      Returns void

    • Flushes the stream.

      Returns void

    • Writes an array, or portion thereof, of characters.

      Parameters

      • str: string
      • Optionaloff: number

        Offset from which to start writing characters

      • Optionallen: number

        Number of characters to write

      Returns void