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