jdk/src/java.base/share/classes/java/lang/StringBuffer.java
author bchristi
Fri, 17 Apr 2015 12:49:51 -0700
changeset 29974 9dea25b5ffba
parent 25859 3317bb8137f4
child 31671 362e0c0acece
permissions -rw-r--r--
8048264: StringBuffer's codePoint methods throw unspecified IndexOutOfBoundsException Summary: Add missing @throws tags Reviewed-by: dholmes, lancea
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
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 17709
diff changeset
    95
 * @since   1.0
2
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
    /**
29974
9dea25b5ffba 8048264: StringBuffer's codePoint methods throw unspecified IndexOutOfBoundsException
bchristi
parents: 25859
diff changeset
   209
     * @throws IndexOutOfBoundsException {@inheritDoc}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   212
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    public synchronized int codePointAt(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        return super.codePointAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    /**
29974
9dea25b5ffba 8048264: StringBuffer's codePoint methods throw unspecified IndexOutOfBoundsException
bchristi
parents: 25859
diff changeset
   218
     * @throws IndexOutOfBoundsException {@inheritDoc}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * @since     1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   221
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    public synchronized int codePointBefore(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        return super.codePointBefore(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    /**
29974
9dea25b5ffba 8048264: StringBuffer's codePoint methods throw unspecified IndexOutOfBoundsException
bchristi
parents: 25859
diff changeset
   227
     * @throws IndexOutOfBoundsException {@inheritDoc}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @since     1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   230
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    public synchronized int codePointCount(int beginIndex, int endIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        return super.codePointCount(beginIndex, endIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    /**
29974
9dea25b5ffba 8048264: StringBuffer's codePoint methods throw unspecified IndexOutOfBoundsException
bchristi
parents: 25859
diff changeset
   236
     * @throws IndexOutOfBoundsException {@inheritDoc}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * @since     1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   239
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    public synchronized int offsetByCodePoints(int index, int codePointOffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        return super.offsetByCodePoints(index, codePointOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   247
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   248
    public synchronized void getChars(int srcBegin, int srcEnd, char[] dst,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                                      int dstBegin)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        super.getChars(srcBegin, srcEnd, dst, dstBegin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * @see        #length()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   258
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    public synchronized void setCharAt(int index, char ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        if ((index < 0) || (index >= count))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            throw new StringIndexOutOfBoundsException(index);
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   262
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        value[index] = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   266
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    public synchronized StringBuffer append(Object obj) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   268
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        super.append(String.valueOf(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   273
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    public synchronized StringBuffer append(String str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   275
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    /**
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   281
     * Appends the specified {@code StringBuffer} to this sequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * <p>
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   283
     * The characters of the {@code StringBuffer} argument are appended,
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   284
     * in order, to the contents of this {@code StringBuffer}, increasing the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   285
     * length of this {@code StringBuffer} by the length of the argument.
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   286
     * If {@code sb} is {@code null}, then the four characters
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   287
     * {@code "null"} are appended to this {@code StringBuffer}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * 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
   290
     * contained in the {@code StringBuffer} just prior to execution of the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   291
     * {@code append} method. Then the character at index <i>k</i> in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * the new character sequence is equal to the character at index <i>k</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * in the old character sequence, if <i>k</i> is less than <i>n</i>;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * 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
   295
     * argument {@code sb}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   297
     * 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
   298
     * object, but does not synchronize on the source ({@code sb}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     *
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14332
diff changeset
   300
     * @param   sb   the {@code StringBuffer} to append.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * @return  a reference to this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    public synchronized StringBuffer append(StringBuffer sb) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   305
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        super.append(sb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   310
    /**
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   311
     * @since 1.8
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   312
     */
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   313
    @Override
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   314
    synchronized StringBuffer append(AbstractStringBuilder asb) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   315
        toStringCache = null;
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   316
        super.append(asb);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   317
        return this;
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   318
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    /**
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   321
     * Appends the specified {@code CharSequence} to this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * <p>
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   324
     * The characters of the {@code CharSequence} argument are appended,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * in order, increasing the length of this sequence by the length of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * <p>The result of this method is exactly the same as if it were an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * invocation of this.append(s, 0, s.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   331
     * <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
   332
     * object, but does not synchronize on the source ({@code s}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   334
     * <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
   335
     * {@code "null"} are appended.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *
13155
8140afb39557 7100996: (spec str) IndexOutOfBoundsException when using a StringBuffer from multiple threads
jgish
parents: 5506
diff changeset
   337
     * @param   s the {@code CharSequence} to append.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * @return  a reference to this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   341
    @Override
17709
fc6f678fdb83 8014814: (str) StringBuffer "null" is not appended
dholmes
parents: 17472
diff changeset
   342
    public synchronized StringBuffer append(CharSequence s) {
fc6f678fdb83 8014814: (str) StringBuffer "null" is not appended
dholmes
parents: 17472
diff changeset
   343
        toStringCache = null;
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   344
        super.append(s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   345
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   352
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    public synchronized StringBuffer append(CharSequence s, int start, int end)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   355
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        super.append(s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   360
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   361
    public synchronized StringBuffer append(char[] str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   362
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   367
    /**
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   368
     * @throws IndexOutOfBoundsException {@inheritDoc}
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   369
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   370
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   371
    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
   372
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        super.append(str, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   377
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    public synchronized StringBuffer append(boolean b) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   379
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        super.append(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   384
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    public synchronized StringBuffer append(char c) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   386
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        super.append(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   391
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    public synchronized StringBuffer append(int i) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   393
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        super.append(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   401
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    public synchronized StringBuffer appendCodePoint(int codePoint) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   403
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        super.appendCodePoint(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   408
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    public synchronized StringBuffer append(long lng) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   410
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        super.append(lng);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   415
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    public synchronized StringBuffer append(float f) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   417
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        super.append(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   422
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    public synchronized StringBuffer append(double d) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   424
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        super.append(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   433
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    public synchronized StringBuffer delete(int start, int end) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   435
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        super.delete(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   444
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    public synchronized StringBuffer deleteCharAt(int index) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   446
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        super.deleteCharAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   455
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    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
   457
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        super.replace(start, end, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   466
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    public synchronized String substring(int start) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        return substring(start, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   475
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    public synchronized CharSequence subSequence(int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        return super.substring(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   484
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    public synchronized String substring(int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        return super.substring(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   493
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   494
    public synchronized StringBuffer insert(int index, char[] str, int offset,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                                            int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   497
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        super.insert(index, str, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   505
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    public synchronized StringBuffer insert(int offset, Object obj) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   507
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        super.insert(offset, String.valueOf(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   515
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    public synchronized StringBuffer insert(int offset, String str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   517
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   525
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   526
    public synchronized StringBuffer insert(int offset, char[] str) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   527
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   536
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    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
   538
        // 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
   539
        // after narrowing of s to specific type
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   540
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   541
        super.insert(dstOffset, s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   542
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   549
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    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
   551
            int start, int end)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   553
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        super.insert(dstOffset, s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   561
    @Override
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   562
    public  StringBuffer insert(int offset, boolean b) {
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   563
        // 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
   564
        // 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
   565
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   566
        super.insert(offset, b);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   567
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   573
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    public synchronized StringBuffer insert(int offset, char c) {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   575
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        super.insert(offset, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   583
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    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
   585
        // 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
   586
        // 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
   587
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   588
        super.insert(offset, i);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   589
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   595
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    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
   597
        // 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
   598
        // 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
   599
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   600
        super.insert(offset, l);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   601
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   607
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    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
   609
        // 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
   610
        // 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
   611
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   612
        super.insert(offset, f);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   613
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   619
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    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
   621
        // 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
   622
        // 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
   623
        // Ditto for toStringCache clearing
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   624
        super.insert(offset, d);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   625
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   631
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    public int indexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   633
        // 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
   634
        return super.indexOf(str);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   640
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    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
   642
        return super.indexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   648
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    public int lastIndexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   650
        // Note, synchronization achieved via invocations of other StringBuffer methods
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        return lastIndexOf(str, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * @since      1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   657
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    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
   659
        return super.lastIndexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    /**
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 17709
diff changeset
   663
     * @since   1.0.2
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   665
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    public synchronized StringBuffer reverse() {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   667
        toStringCache = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        super.reverse();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 13155
diff changeset
   672
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    public synchronized String toString() {
17472
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   674
        if (toStringCache == null) {
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   675
            toStringCache = Arrays.copyOfRange(value, 0, count);
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   676
        }
4ce9bd9f56ac 8013395: StringBuffer.toString performance regression impacting embedded benchmarks
dholmes
parents: 15312
diff changeset
   677
        return new String(toStringCache, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * Serializable fields for StringBuffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * @serialField value  char[]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     *              The backing character array of this StringBuffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * @serialField count int
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     *              The number of characters in this StringBuffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * @serialField shared  boolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     *              A flag indicating whether the backing array is shared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     *              The value is ignored upon deserialization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    private static final java.io.ObjectStreamField[] serialPersistentFields =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
        new java.io.ObjectStreamField("value", char[].class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        new java.io.ObjectStreamField("count", Integer.TYPE),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        new java.io.ObjectStreamField("shared", Boolean.TYPE),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * readObject is called to restore the state of the StringBuffer from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * a stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    private synchronized void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        java.io.ObjectOutputStream.PutField fields = s.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        fields.put("value", value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        fields.put("count", count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        fields.put("shared", false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        s.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * readObject is called to restore the state of the StringBuffer from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * a stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        java.io.ObjectInputStream.GetField fields = s.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        value = (char[])fields.get("value", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        count = fields.get("count", 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
}