jdk/src/share/classes/java/lang/StringBuffer.java
author darcy
Thu, 27 Jun 2013 19:02:02 -0700
changeset 18569 0e46c17766b7
parent 17709 fc6f678fdb83
child 24865 09b1d992ca72
permissions -rw-r--r--
8019357: Fix doclint warnings in java.lang.invoke Reviewed-by: jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
     2
 * Copyright (c) 1994, 2013, 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: 1247
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: 1247
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: 1247
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
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.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
    28
import java.util.Arrays;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * A thread-safe, mutable sequence of characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * A string buffer is like a {@link String}, but can be modified. At any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * point in time it contains some particular sequence of characters, but
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * the length and content of the sequence can be changed through certain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * method calls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * String buffers are safe for use by multiple threads. The methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * are synchronized where necessary so that all the operations on any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * particular instance behave as if they occur in some serial order
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * that is consistent with the order of the method calls made by each of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * the individual threads involved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    43
 * The principal operations on a {@code StringBuffer} are the
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    44
 * {@code append} and {@code insert} methods, which are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * overloaded so as to accept data of any type. Each effectively
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * converts a given datum to a string and then appends or inserts the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * characters of that string to the string buffer. The
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    48
 * {@code append} method always adds these characters at the end
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    49
 * of the buffer; the {@code insert} method adds the characters at
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * a specified point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    52
 * For example, if {@code z} refers to a string buffer object
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    53
 * whose current contents are {@code "start"}, then
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    54
 * the method call {@code z.append("le")} would cause the string
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    55
 * buffer to contain {@code "startle"}, whereas
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    56
 * {@code z.insert(4, "le")} would alter the string buffer to
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    57
 * contain {@code "starlet"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    59
 * In general, if sb refers to an instance of a {@code StringBuffer},
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    60
 * then {@code sb.append(x)} has the same effect as
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
    61
 * {@code sb.insert(sb.length(), x)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * Whenever an operation occurs involving a source sequence (such as
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    64
 * appending or inserting from a source sequence), this class synchronizes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * only on the string buffer performing the operation, not on the source.
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    66
 * Note that while {@code StringBuffer} is designed to be safe to use
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    67
 * concurrently from multiple threads, if the constructor or the
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    68
 * {@code append} or {@code insert} operation is passed a source sequence
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    69
 * that is shared across threads, the calling code must ensure
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    70
 * that the operation has a consistent and unchanging view of the source
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    71
 * sequence for the duration of the operation.
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    72
 * This could be satisfied by the caller holding a lock during the
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    73
 * operation's call, by using an immutable source sequence, or by not
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
    74
 * sharing the source sequence across threads.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * Every string buffer has a capacity. As long as the length of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * character sequence contained in the string buffer does not exceed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * the capacity, it is not necessary to allocate a new internal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * buffer array. If the internal buffer overflows, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * automatically made larger.
15312
4b57f9da8192 4247235: (spec str) StringBuffer.insert(int, char[]) specification is inconsistent
jgish
parents: 14997
diff changeset
    81
 * <p>
4b57f9da8192 4247235: (spec str) StringBuffer.insert(int, char[]) specification is inconsistent
jgish
parents: 14997
diff changeset
    82
 * Unless otherwise noted, passing a {@code null} argument to a constructor
4b57f9da8192 4247235: (spec str) StringBuffer.insert(int, char[]) specification is inconsistent
jgish
parents: 14997
diff changeset
    83
 * or method in this class will cause a {@link NullPointerException} to be
4b57f9da8192 4247235: (spec str) StringBuffer.insert(int, char[]) specification is inconsistent
jgish
parents: 14997
diff changeset
    84
 * thrown.
4b57f9da8192 4247235: (spec str) StringBuffer.insert(int, char[]) specification is inconsistent
jgish
parents: 14997
diff changeset
    85
 * <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * As of  release JDK 5, this class has been supplemented with an equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * class designed for use by a single thread, {@link StringBuilder}.  The
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
    88
 * {@code StringBuilder} class should generally be used in preference to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * this one, as it supports all of the same operations but it is faster, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * it performs no synchronization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * @author      Arthur van Hoff
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * @see     java.lang.StringBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * @see     java.lang.String
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * @since   JDK1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 public final class StringBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    extends AbstractStringBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    implements java.io.Serializable, CharSequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   102
    /**
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   103
     * A cache of the last value returned by toString. Cleared
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   104
     * whenever the StringBuffer is modified.
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   105
     */
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   106
    private transient char[] toStringCache;
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   107
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /** use serialVersionUID from JDK 1.0.2 for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    static final long serialVersionUID = 3388685877147921107L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * Constructs a string buffer with no characters in it and an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * initial capacity of 16 characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public StringBuffer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        super(16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Constructs a string buffer with no characters in it and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * the specified initial capacity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @param      capacity  the initial capacity.
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   124
     * @exception  NegativeArraySizeException  if the {@code capacity}
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   125
     *               argument is less than {@code 0}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    public StringBuffer(int capacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        super(capacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * Constructs a string buffer initialized to the contents of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * specified string. The initial capacity of the string buffer is
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   134
     * {@code 16} plus the length of the string argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param   str   the initial contents of the buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public StringBuffer(String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        super(str.length() + 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Constructs a string buffer that contains the same characters
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   145
     * as the specified {@code CharSequence}. The initial capacity of
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   146
     * the string buffer is {@code 16} plus the length of the
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   147
     * {@code CharSequence} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   149
     * If the length of the specified {@code CharSequence} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * less than or equal to zero, then an empty buffer of capacity
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   151
     * {@code 16} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @param      seq   the sequence to copy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public StringBuffer(CharSequence seq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        this(seq.length() + 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        append(seq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   161
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public synchronized int length() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        return count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   166
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public synchronized int capacity() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        return value.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   172
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public synchronized void ensureCapacity(int minimumCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        if (minimumCapacity > value.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            expandCapacity(minimumCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   182
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    public synchronized void trimToSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        super.trimToSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @see        #length()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   191
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    public synchronized void setLength(int newLength) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   193
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        super.setLength(newLength);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @see        #length()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   201
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    public synchronized char charAt(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        if ((index < 0) || (index >= count))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            throw new StringIndexOutOfBoundsException(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        return value[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   211
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    public synchronized int codePointAt(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        return super.codePointAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @since     1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   219
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    public synchronized int codePointBefore(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        return super.codePointBefore(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @since     1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   227
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    public synchronized int codePointCount(int beginIndex, int endIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        return super.codePointCount(beginIndex, endIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @since     1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   235
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    public synchronized int offsetByCodePoints(int index, int codePointOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        return super.offsetByCodePoints(index, codePointOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   243
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   244
    public synchronized void getChars(int srcBegin, int srcEnd, char[] dst,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                                      int dstBegin)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        super.getChars(srcBegin, srcEnd, dst, dstBegin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @see        #length()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   254
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    public synchronized void setCharAt(int index, char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        if ((index < 0) || (index >= count))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            throw new StringIndexOutOfBoundsException(index);
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   258
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        value[index] = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   262
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    public synchronized StringBuffer append(Object obj) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   264
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        super.append(String.valueOf(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   269
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    public synchronized StringBuffer append(String str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   271
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    /**
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   277
     * Appends the specified {@code StringBuffer} to this sequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * <p>
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   279
     * The characters of the {@code StringBuffer} argument are appended,
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   280
     * in order, to the contents of this {@code StringBuffer}, increasing the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   281
     * length of this {@code StringBuffer} by the length of the argument.
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   282
     * If {@code sb} is {@code null}, then the four characters
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   283
     * {@code "null"} are appended to this {@code StringBuffer}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * Let <i>n</i> be the length of the old character sequence, the one
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   286
     * contained in the {@code StringBuffer} just prior to execution of the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   287
     * {@code append} method. Then the character at index <i>k</i> in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * the new character sequence is equal to the character at index <i>k</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * in the old character sequence, if <i>k</i> is less than <i>n</i>;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * otherwise, it is equal to the character at index <i>k-n</i> in the
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   291
     * argument {@code sb}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   293
     * This method synchronizes on {@code this}, the destination
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   294
     * object, but does not synchronize on the source ({@code sb}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   296
     * @param   sb   the {@code StringBuffer} to append.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * @return  a reference to this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    public synchronized StringBuffer append(StringBuffer sb) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   301
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        super.append(sb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   306
    /**
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   307
     * @since 1.8
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   308
     */
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   309
    @Override
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   310
    synchronized StringBuffer append(AbstractStringBuilder asb) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   311
        toStringCache = null;
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   312
        super.append(asb);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   313
        return this;
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   314
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    /**
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   317
     * Appends the specified {@code CharSequence} to this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   320
     * The characters of the {@code CharSequence} argument are appended,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * in order, increasing the length of this sequence by the length of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * <p>The result of this method is exactly the same as if it were an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * invocation of this.append(s, 0, s.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     *
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   327
     * <p>This method synchronizes on {@code this}, the destination
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   328
     * object, but does not synchronize on the source ({@code s}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   330
     * <p>If {@code s} is {@code null}, then the four characters
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   331
     * {@code "null"} are appended.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   333
     * @param   s the {@code CharSequence} to append.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @return  a reference to this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   337
    @Override
17709
fc6f678fdb83 8014814: (str) StringBuffer "null" is not appended
dholmes
parents: 17472
diff changeset
   338
    public synchronized StringBuffer append(CharSequence s) {
fc6f678fdb83 8014814: (str) StringBuffer "null" is not appended
dholmes
parents: 17472
diff changeset
   339
        toStringCache = null;
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   340
        super.append(s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   341
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   348
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    public synchronized StringBuffer append(CharSequence s, int start, int end)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   351
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        super.append(s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   356
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   357
    public synchronized StringBuffer append(char[] str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   358
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   363
    /**
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   364
     * @throws IndexOutOfBoundsException {@inheritDoc}
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   365
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   366
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   367
    public synchronized StringBuffer append(char[] str, int offset, int len) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   368
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        super.append(str, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   373
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    public synchronized StringBuffer append(boolean b) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   375
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        super.append(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   380
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    public synchronized StringBuffer append(char c) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   382
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        super.append(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   387
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    public synchronized StringBuffer append(int i) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   389
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        super.append(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   397
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    public synchronized StringBuffer appendCodePoint(int codePoint) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   399
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        super.appendCodePoint(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   404
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    public synchronized StringBuffer append(long lng) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   406
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        super.append(lng);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   411
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    public synchronized StringBuffer append(float f) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   413
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        super.append(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   418
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    public synchronized StringBuffer append(double d) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   420
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        super.append(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   429
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    public synchronized StringBuffer delete(int start, int end) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   431
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        super.delete(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   440
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    public synchronized StringBuffer deleteCharAt(int index) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   442
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        super.deleteCharAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   451
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    public synchronized StringBuffer replace(int start, int end, String str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   453
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        super.replace(start, end, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   462
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    public synchronized String substring(int start) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        return substring(start, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   471
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    public synchronized CharSequence subSequence(int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        return super.substring(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   480
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    public synchronized String substring(int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        return super.substring(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   489
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   490
    public synchronized StringBuffer insert(int index, char[] str, int offset,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                                            int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   493
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        super.insert(index, str, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   501
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    public synchronized StringBuffer insert(int offset, Object obj) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   503
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        super.insert(offset, String.valueOf(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   511
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    public synchronized StringBuffer insert(int offset, String str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   513
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   521
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   522
    public synchronized StringBuffer insert(int offset, char[] str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   523
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   532
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    public StringBuffer insert(int dstOffset, CharSequence s) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   534
        // Note, synchronization achieved via invocations of other StringBuffer methods
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   535
        // after narrowing of s to specific type
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   536
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   537
        super.insert(dstOffset, s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   538
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   545
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    public synchronized StringBuffer insert(int dstOffset, CharSequence s,
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   547
            int start, int end)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   549
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        super.insert(dstOffset, s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   557
    @Override
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   558
    public  StringBuffer insert(int offset, boolean b) {
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   559
        // Note, synchronization achieved via invocation of StringBuffer insert(int, String)
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   560
        // after conversion of b to String by super class method
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   561
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   562
        super.insert(offset, b);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   563
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   569
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    public synchronized StringBuffer insert(int offset, char c) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   571
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        super.insert(offset, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   579
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    public StringBuffer insert(int offset, int i) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   581
        // Note, synchronization achieved via invocation of StringBuffer insert(int, String)
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   582
        // after conversion of i to String by super class method
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   583
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   584
        super.insert(offset, i);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   585
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   591
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    public StringBuffer insert(int offset, long l) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   593
        // Note, synchronization achieved via invocation of StringBuffer insert(int, String)
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   594
        // after conversion of l to String by super class method
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   595
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   596
        super.insert(offset, l);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   597
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   603
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    public StringBuffer insert(int offset, float f) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   605
        // Note, synchronization achieved via invocation of StringBuffer insert(int, String)
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   606
        // after conversion of f to String by super class method
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   607
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   608
        super.insert(offset, f);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   609
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   615
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    public StringBuffer insert(int offset, double d) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   617
        // Note, synchronization achieved via invocation of StringBuffer insert(int, String)
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   618
        // after conversion of d to String by super class method
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   619
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   620
        super.insert(offset, d);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   621
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   627
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    public int indexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   629
        // Note, synchronization achieved via invocations of other StringBuffer methods
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   630
        return super.indexOf(str);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   636
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    public synchronized int indexOf(String str, int fromIndex) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   638
        return super.indexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   644
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    public int lastIndexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   646
        // Note, synchronization achieved via invocations of other StringBuffer methods
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        return lastIndexOf(str, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   653
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    public synchronized int lastIndexOf(String str, int fromIndex) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   655
        return super.lastIndexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * @since   JDK1.0.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   661
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    public synchronized StringBuffer reverse() {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   663
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        super.reverse();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   668
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    public synchronized String toString() {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   670
        if (toStringCache == null) {
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   671
            toStringCache = Arrays.copyOfRange(value, 0, count);
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   672
        }
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   673
        return new String(toStringCache, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * Serializable fields for StringBuffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * @serialField value  char[]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     *              The backing character array of this StringBuffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * @serialField count int
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     *              The number of characters in this StringBuffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * @serialField shared  boolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     *              A flag indicating whether the backing array is shared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     *              The value is ignored upon deserialization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
    private static final java.io.ObjectStreamField[] serialPersistentFields =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        new java.io.ObjectStreamField("value", char[].class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        new java.io.ObjectStreamField("count", Integer.TYPE),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        new java.io.ObjectStreamField("shared", Boolean.TYPE),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * readObject is called to restore the state of the StringBuffer from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * a stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    private synchronized void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        java.io.ObjectOutputStream.PutField fields = s.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        fields.put("value", value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        fields.put("count", count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        fields.put("shared", false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        s.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * readObject is called to restore the state of the StringBuffer from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * a stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        java.io.ObjectInputStream.GetField fields = s.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        value = (char[])fields.get("value", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        count = fields.get("count", 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
}