src/java.base/share/classes/java/lang/StringBuilder.java
author jlaskey
Thu, 06 Jun 2019 12:24:44 -0300
changeset 55260 cc0f117f4405
parent 54481 f847a42ddc01
child 57956 e0b8b019d2f5
permissions -rw-r--r--
8223775: String::stripIndent (Preview) Reviewed-by: abuckley, vromero, jlahoda, bchristi, rriggs, smarks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
53653
868611f0adc3 8218227: StringBuilder/StringBuffer constructor throws confusing NegativeArraySizeException
igerasim
parents: 49115
diff changeset
     2
 * Copyright (c) 2003, 2019, 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
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
    28
import jdk.internal.HotSpotIntrinsicCandidate;
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 mutable sequence of characters.  This class provides an API compatible
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    32
 * with {@code StringBuffer}, but with no guarantee of synchronization.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * This class is designed for use as a drop-in replacement for
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    34
 * {@code StringBuffer} in places where the string buffer was being
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * used by a single thread (as is generally the case).   Where possible,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * it is recommended that this class be used in preference to
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    37
 * {@code StringBuffer} as it will be faster under most implementations.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    39
 * <p>The principal operations on a {@code StringBuilder} are the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    40
 * {@code append} and {@code insert} methods, which are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * overloaded so as to accept data of any type. Each effectively
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * converts a given datum to a string and then appends or inserts the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * characters of that string to the string builder. The
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    44
 * {@code append} method always adds these characters at the end
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    45
 * of the builder; the {@code insert} method adds the characters at
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * a specified point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p>
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    48
 * For example, if {@code z} refers to a string builder object
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    49
 * whose current contents are "{@code start}", then
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    50
 * the method call {@code z.append("le")} would cause the string
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    51
 * builder to contain "{@code startle}", whereas
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    52
 * {@code z.insert(4, "le")} would alter the string builder to
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    53
 * contain "{@code starlet}".
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    55
 * In general, if sb refers to an instance of a {@code StringBuilder},
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    56
 * then {@code sb.append(x)} has the same effect as
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    57
 * {@code sb.insert(sb.length(), x)}.
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    58
 * <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * Every string builder has a capacity. As long as the length of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * character sequence contained in the string builder does not exceed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * the capacity, it is not necessary to allocate a new internal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * buffer. If the internal buffer overflows, it is automatically made larger.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
    64
 * <p>Instances of {@code StringBuilder} are not safe for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * use by multiple threads. If such synchronization is required then it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * recommended that {@link java.lang.StringBuffer} be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *
15312
4b57f9da8192 4247235: (spec str) StringBuffer.insert(int, char[]) specification is inconsistent
jgish
parents: 14997
diff changeset
    68
 * <p>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
    69
 * 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
    70
 * thrown.
4b57f9da8192 4247235: (spec str) StringBuffer.insert(int, char[]) specification is inconsistent
jgish
parents: 14997
diff changeset
    71
 *
49115
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    72
 * @apiNote
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    73
 * {@code StringBuilder} implements {@code Comparable} but does not override
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    74
 * {@link Object#equals equals}. Thus, the natural ordering of {@code StringBuilder}
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    75
 * is inconsistent with equals. Care should be exercised if {@code StringBuilder}
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    76
 * objects are used as keys in a {@code SortedMap} or elements in a {@code SortedSet}.
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    77
 * See {@link Comparable}, {@link java.util.SortedMap SortedMap}, or
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    78
 * {@link java.util.SortedSet SortedSet} for more information.
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    79
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * @author      Michael McCloskey
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * @see         java.lang.StringBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * @see         java.lang.String
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * @since       1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
public final class StringBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    extends AbstractStringBuilder
49115
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
    87
    implements java.io.Serializable, Comparable<StringBuilder>, CharSequence
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /** use serialVersionUID for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    static final long serialVersionUID = 4383685877147921099L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Constructs a string builder with no characters in it and an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * initial capacity of 16 characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
    97
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    public StringBuilder() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        super(16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * Constructs a string builder with no characters in it and an
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   104
     * initial capacity specified by the {@code capacity} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @param      capacity  the initial capacity.
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   107
     * @throws     NegativeArraySizeException  if the {@code capacity}
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   108
     *               argument is less than {@code 0}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   110
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public StringBuilder(int capacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        super(capacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * Constructs a string builder initialized to the contents of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * specified string. The initial capacity of the string builder is
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   118
     * {@code 16} plus the length of the string argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param   str   the initial contents of the buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   122
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    public StringBuilder(String str) {
54481
f847a42ddc01 8221430: StringBuffer(CharSequence) constructor truncates when -XX:-CompactStrings specified
igerasim
parents: 53653
diff changeset
   124
        super(str);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * Constructs a string builder that contains the same characters
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   129
     * as the specified {@code CharSequence}. The initial capacity of
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   130
     * the string builder is {@code 16} plus the length of the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   131
     * {@code CharSequence} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param      seq   the sequence to copy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    public StringBuilder(CharSequence seq) {
54481
f847a42ddc01 8221430: StringBuffer(CharSequence) constructor truncates when -XX:-CompactStrings specified
igerasim
parents: 53653
diff changeset
   136
        super(seq);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
49115
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   139
    /**
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   140
     * Compares two {@code StringBuilder} instances lexicographically. This method
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   141
     * follows the same rules for lexicographical comparison as defined in the
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   142
     * {@linkplain java.lang.CharSequence#compare(java.lang.CharSequence,
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   143
     * java.lang.CharSequence)  CharSequence.compare(this, another)} method.
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   144
     *
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   145
     * <p>
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   146
     * For finer-grained, locale-sensitive String comparison, refer to
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   147
     * {@link java.text.Collator}.
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   148
     *
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   149
     * @param another the {@code StringBuilder} to be compared with
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   150
     *
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   151
     * @return  the value {@code 0} if this {@code StringBuilder} contains the same
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   152
     * character sequence as that of the argument {@code StringBuilder}; a negative integer
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   153
     * if this {@code StringBuilder} is lexicographically less than the
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   154
     * {@code StringBuilder} argument; or a positive integer if this {@code StringBuilder}
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   155
     * is lexicographically greater than the {@code StringBuilder} argument.
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   156
     *
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   157
     * @since 11
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   158
     */
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   159
    @Override
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   160
    public int compareTo(StringBuilder another) {
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   161
        return super.compareTo(another);
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   162
    }
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   163
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   164
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    public StringBuilder append(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        return append(String.valueOf(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   169
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   170
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    public StringBuilder append(String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   177
     * Appends the specified {@code StringBuffer} to this sequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * <p>
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   179
     * The characters of the {@code StringBuffer} argument are appended,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * in order, to this sequence, increasing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * length of this sequence by the length of the argument.
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   182
     * If {@code sb} is {@code null}, then the four characters
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   183
     * {@code "null"} are appended to this sequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * Let <i>n</i> be the length of this character sequence just prior to
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   186
     * execution of the {@code append} method. Then the character at index
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * <i>k</i> in the new character sequence is equal to the character at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * index <i>k</i> in the old character sequence, if <i>k</i> is less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * <i>n</i>; otherwise, it is equal to the character at index <i>k-n</i>
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   190
     * in the argument {@code sb}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   192
     * @param   sb   the {@code StringBuffer} to append.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @return  a reference to this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    public StringBuilder append(StringBuffer sb) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        super.append(sb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   200
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    public StringBuilder append(CharSequence s) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   202
        super.append(s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   203
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @throws     IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   209
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    public StringBuilder append(CharSequence s, int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        super.append(s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   215
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   216
    public StringBuilder append(char[] str) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   221
    /**
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   222
     * @throws IndexOutOfBoundsException {@inheritDoc}
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   223
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   224
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   225
    public StringBuilder append(char[] str, int offset, int len) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        super.append(str, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   230
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    public StringBuilder append(boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        super.append(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   236
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   237
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public StringBuilder append(char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        super.append(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   243
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   244
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    public StringBuilder append(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        super.append(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   250
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    public StringBuilder append(long lng) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        super.append(lng);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   256
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    public StringBuilder append(float f) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        super.append(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   262
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    public StringBuilder append(double d) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        super.append(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   271
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    public StringBuilder appendCodePoint(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        super.appendCodePoint(codePoint);
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   280
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    public StringBuilder delete(int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        super.delete(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   289
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    public StringBuilder deleteCharAt(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        super.deleteCharAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   298
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    public StringBuilder replace(int start, int end, String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        super.replace(start, end, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   307
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   308
    public StringBuilder insert(int index, char[] str, int offset,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                                int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        super.insert(index, str, offset, len);
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   318
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    public StringBuilder insert(int offset, Object obj) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   320
            super.insert(offset, obj);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   321
            return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   327
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    public StringBuilder insert(int offset, String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   336
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   337
    public StringBuilder insert(int offset, char[] str) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   345
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    public StringBuilder insert(int dstOffset, CharSequence s) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   347
            super.insert(dstOffset, s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   348
            return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   354
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    public StringBuilder insert(int dstOffset, CharSequence s,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
                                int start, int end)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        super.insert(dstOffset, s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   365
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    public StringBuilder insert(int offset, boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        super.insert(offset, b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   374
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    public StringBuilder insert(int offset, char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        super.insert(offset, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   383
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    public StringBuilder insert(int offset, int i) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   385
        super.insert(offset, i);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   386
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   392
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    public StringBuilder insert(int offset, long l) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   394
        super.insert(offset, l);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   395
        return this;
2
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
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   401
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    public StringBuilder insert(int offset, float f) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   403
        super.insert(offset, f);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   404
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   410
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    public StringBuilder insert(int offset, double d) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   412
        super.insert(offset, d);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   413
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   416
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    public int indexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   418
        return super.indexOf(str);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   421
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    public int indexOf(String str, int fromIndex) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   423
        return super.indexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   426
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    public int lastIndexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   428
        return super.lastIndexOf(str);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   431
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    public int lastIndexOf(String str, int fromIndex) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   433
        return super.lastIndexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   436
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    public StringBuilder reverse() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        super.reverse();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   442
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   443
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        // Create a copy, don't share the array
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   446
        return isLatin1() ? StringLatin1.newString(value, 0, count)
34517
c6e795a80c80 8142303: C2 compilation fails with "bad AD file"
thartmann
parents: 33663
diff changeset
   447
                          : StringUTF16.newString(value, 0, count);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    /**
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   451
     * Save the state of the {@code StringBuilder} instance to a stream
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * (that is, serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @serialData the number of characters currently stored in the string
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   455
     *             builder ({@code int}), followed by the characters in the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   456
     *             string builder ({@code char[]}).   The length of the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   457
     *             {@code char} array may be greater than the number of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *             characters currently stored in the string builder, in which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     *             case extra characters are ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        s.writeInt(count);
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   465
        char[] val = new char[capacity()];
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   466
        if (isLatin1()) {
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   467
            StringLatin1.getChars(value, 0, count, val, 0);
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   468
        } else {
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   469
            StringUTF16.getChars(value, 0, count, val, 0);
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   470
        }
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   471
        s.writeObject(val);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * readObject is called to restore the state of the StringBuffer from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * a stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        count = s.readInt();
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   482
        char[] val = (char[]) s.readObject();
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   483
        initBytes(val, 0, val.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
}