jdk/src/java.base/share/classes/java/io/Writer.java
author martin
Tue, 15 Sep 2015 21:56:04 -0700
changeset 32649 2ee9017c7597
parent 32033 bf24e33c7919
child 38373 21f4f5eee7cc
permissions -rw-r--r--
8136583: Core libraries should use blessed modifier order Summary: Run blessed-modifier-order script (see bug) Reviewed-by: psandoz, chegar, alanb, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 11016
diff changeset
     2
 * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.io;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * Abstract class for writing to character streams.  The only methods that a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * subclass must implement are write(char[], int, int), flush(), and close().
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Most subclasses, however, will override some of the methods defined here in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * order to provide higher efficiency, additional functionality, or both.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * @see Writer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * @see   BufferedWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * @see   CharArrayWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * @see   FilterWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * @see   OutputStreamWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * @see     FileWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @see   PipedWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @see   PrintWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @see   StringWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @see Reader
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * @author      Mark Reinhold
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 14342
diff changeset
    47
 * @since       1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
public abstract class Writer implements Appendable, Closeable, Flushable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * Temporary buffer used to hold writes of strings and single characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private char[] writeBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * Size of writeBuffer, must be >= 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     */
11016
e2665f4ac6d2 7110111: Minor Java SE javadoc & Constructor clean up
lancea
parents: 5506
diff changeset
    60
    private static final int WRITE_BUFFER_SIZE = 1024;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * The object used to synchronize operations on this stream.  For
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * efficiency, a character-stream object may use an object other than
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * itself to protect critical sections.  A subclass should therefore use
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    66
     * the object in this field rather than {@code this} or a synchronized
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    protected Object lock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Creates a new character-stream writer whose critical sections will
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * synchronize on the writer itself.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    protected Writer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        this.lock = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * Creates a new character-stream writer whose critical sections will
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * synchronize on the given object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @param  lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *         Object to synchronize on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    protected Writer(Object lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (lock == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        this.lock = lock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Writes a single character.  The character to be written is contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * the 16 low-order bits of the given integer value; the 16 high-order bits
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * are ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * <p> Subclasses that intend to support efficient single-character output
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * should override this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @param  c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *         int specifying a character to be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public void write(int c) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            if (writeBuffer == null){
11016
e2665f4ac6d2 7110111: Minor Java SE javadoc & Constructor clean up
lancea
parents: 5506
diff changeset
   110
                writeBuffer = new char[WRITE_BUFFER_SIZE];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            writeBuffer[0] = (char) c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            write(writeBuffer, 0, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Writes an array of characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param  cbuf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *         Array of characters to be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    public void write(char cbuf[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        write(cbuf, 0, cbuf.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Writes a portion of an array of characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param  cbuf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *         Array of characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param  off
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *         Offset from which to start writing characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @param  len
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *         Number of characters to write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 32033
diff changeset
   145
    public abstract void write(char cbuf[], int off, int len) throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * Writes a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @param  str
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *         String to be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public void write(String str) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        write(str, 0, str.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * Writes a portion of a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * @param  str
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *         A String
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @param  off
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *         Offset from which to start writing characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param  len
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *         Number of characters to write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @throws  IndexOutOfBoundsException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   173
     *          If {@code off} is negative, or {@code len} is negative,
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   174
     *          or {@code off+len} is negative or greater than the length
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *          of the given string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    public void write(String str, int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            char cbuf[];
11016
e2665f4ac6d2 7110111: Minor Java SE javadoc & Constructor clean up
lancea
parents: 5506
diff changeset
   183
            if (len <= WRITE_BUFFER_SIZE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                if (writeBuffer == null) {
11016
e2665f4ac6d2 7110111: Minor Java SE javadoc & Constructor clean up
lancea
parents: 5506
diff changeset
   185
                    writeBuffer = new char[WRITE_BUFFER_SIZE];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                cbuf = writeBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            } else {    // Don't permanently allocate very large buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                cbuf = new char[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            str.getChars(off, (off + len), cbuf, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            write(cbuf, 0, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * Appends the specified character sequence to this writer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   199
     * <p> An invocation of this method of the form {@code out.append(csq)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     *     out.write(csq.toString()) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   205
     * <p> Depending on the specification of {@code toString} for the
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   206
     * character sequence {@code csq}, the entire sequence may not be
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   207
     * appended. For instance, invoking the {@code toString} method of a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * character buffer will return a subsequence whose content depends upon
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * the buffer's position and limit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @param  csq
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   212
     *         The character sequence to append.  If {@code csq} is
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   213
     *         {@code null}, then the four characters "{@code null}" are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     *         appended to this writer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @return  This writer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    public Writer append(CharSequence csq) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        if (csq == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            write("null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            write(csq.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * Appends a subsequence of the specified character sequence to this writer.
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   233
     * {@code Appendable}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   235
     * <p> An invocation of this method of the form
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   236
     * {@code out.append(csq, start, end)} when {@code csq}
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   237
     * is not {@code null} behaves in exactly the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   240
     * <pre>{@code
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   241
     *     out.write(csq.subSequence(start, end).toString())
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   242
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * @param  csq
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     *         The character sequence from which a subsequence will be
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   246
     *         appended.  If {@code csq} is {@code null}, then characters
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   247
     *         will be appended as if {@code csq} contained the four
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   248
     *         characters "{@code null}".
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @param  start
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     *         The index of the first character in the subsequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * @param  end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *         The index of the character following the last character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *         subsequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * @return  This writer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @throws  IndexOutOfBoundsException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   260
     *          If {@code start} or {@code end} are negative, {@code start}
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   261
     *          is greater than {@code end}, or {@code end} is greater than
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   262
     *          {@code csq.length()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    public Writer append(CharSequence csq, int start, int end) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        CharSequence cs = (csq == null ? "null" : csq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        write(cs.subSequence(start, end).toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * Appends the specified character to this writer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   278
     * <p> An invocation of this method of the form {@code out.append(c)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *     out.write(c) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @param  c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *         The 16-bit character to append
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * @return  This writer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    public Writer append(char c) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        write(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * Flushes the stream.  If the stream has saved any characters from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * various write() methods in a buffer, write them immediately to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * intended destination.  Then, if that destination is another character or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * byte stream, flush it.  Thus one flush() invocation will flush all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * buffers in a chain of Writers and OutputStreams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * <p> If the intended destination of this stream is an abstraction provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * by the underlying operating system, for example a file, then flushing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * stream guarantees only that bytes previously written to the stream are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * passed to the operating system for writing; it does not guarantee that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * they are actually written to a physical device such as a disk drive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 32033
diff changeset
   315
    public abstract void flush() throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * Closes the stream, flushing it first. Once the stream has been closed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * further write() or flush() invocations will cause an IOException to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * thrown. Closing a previously closed stream has no effect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 32033
diff changeset
   325
    public abstract void close() throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
}