src/java.base/share/classes/java/lang/StringBuilder.java
author joehw
Thu, 01 Mar 2018 15:31:04 -0800
changeset 49115 ecfaa82c53be
parent 47216 71c04702a3d5
child 53653 868611f0adc3
permissions -rw-r--r--
8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer Reviewed-by: rriggs, smarks, sherman, tvaleev
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
49115
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
     2
 * Copyright (c) 2003, 2018, 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) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        super(str.length() + 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * Constructs a string builder that contains the same characters
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   130
     * as the specified {@code CharSequence}. The initial capacity of
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   131
     * the string builder is {@code 16} plus the length of the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   132
     * {@code CharSequence} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @param      seq   the sequence to copy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    public StringBuilder(CharSequence seq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        this(seq.length() + 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        append(seq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
49115
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   141
    /**
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   142
     * Compares two {@code StringBuilder} instances lexicographically. This method
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   143
     * 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
   144
     * {@linkplain java.lang.CharSequence#compare(java.lang.CharSequence,
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   145
     * java.lang.CharSequence)  CharSequence.compare(this, another)} method.
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   146
     *
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   147
     * <p>
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   148
     * For finer-grained, locale-sensitive String comparison, refer to
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   149
     * {@link java.text.Collator}.
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
     * @param another the {@code StringBuilder} to be compared with
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   152
     *
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   153
     * @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
   154
     * 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
   155
     * if this {@code StringBuilder} is lexicographically less than the
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   156
     * {@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
   157
     * is lexicographically greater than the {@code StringBuilder} argument.
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
     * @since 11
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   160
     */
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   161
    @Override
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   162
    public int compareTo(StringBuilder another) {
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   163
        return super.compareTo(another);
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   164
    }
ecfaa82c53be 8137326: Methods for comparing CharSequence, StringBuilder, and StringBuffer
joehw
parents: 47216
diff changeset
   165
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   166
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public StringBuilder append(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        return append(String.valueOf(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   171
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   172
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public StringBuilder append(String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /**
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   179
     * Appends the specified {@code StringBuffer} to this sequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * <p>
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   181
     * The characters of the {@code StringBuffer} argument are appended,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * in order, to this sequence, increasing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * length of this sequence by the length of the argument.
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   184
     * If {@code sb} is {@code null}, then the four characters
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   185
     * {@code "null"} are appended to this sequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * 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
   188
     * execution of the {@code append} method. Then the character at index
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * <i>k</i> in the new character sequence is equal to the character at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * index <i>k</i> in the old character sequence, if <i>k</i> is less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * <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
   192
     * in the argument {@code sb}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   194
     * @param   sb   the {@code StringBuffer} to append.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @return  a reference to this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    public StringBuilder append(StringBuffer sb) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        super.append(sb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   202
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public StringBuilder append(CharSequence s) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   204
        super.append(s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   205
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @throws     IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   211
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    public StringBuilder append(CharSequence s, int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        super.append(s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   217
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   218
    public StringBuilder append(char[] str) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        super.append(str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   223
    /**
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   224
     * @throws IndexOutOfBoundsException {@inheritDoc}
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   225
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   226
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   227
    public StringBuilder append(char[] str, int offset, int len) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        super.append(str, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   232
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    public StringBuilder append(boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        super.append(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   238
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   239
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    public StringBuilder append(char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        super.append(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   245
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   246
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    public StringBuilder append(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        super.append(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   252
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    public StringBuilder append(long lng) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        super.append(lng);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   258
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    public StringBuilder append(float f) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        super.append(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   264
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    public StringBuilder append(double d) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        super.append(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   273
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    public StringBuilder appendCodePoint(int codePoint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        super.appendCodePoint(codePoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   282
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    public StringBuilder delete(int start, int end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        super.delete(start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   291
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    public StringBuilder deleteCharAt(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        super.deleteCharAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   300
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    public StringBuilder replace(int start, int end, String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        super.replace(start, end, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   309
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   310
    public StringBuilder insert(int index, char[] str, int offset,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                                int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        super.insert(index, str, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   320
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    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
   322
            super.insert(offset, obj);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   323
            return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   329
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    public StringBuilder insert(int offset, String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   338
    @Override
1223
5c1037124466 6728229: (str) StringBuilder.append(CharSequence) does not throw IndexOutOfBoundsException
martin
parents: 2
diff changeset
   339
    public StringBuilder insert(int offset, char[] str) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        super.insert(offset, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   347
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    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
   349
            super.insert(dstOffset, s);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
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
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   356
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    public StringBuilder insert(int dstOffset, CharSequence s,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                                int start, int end)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        super.insert(dstOffset, s, start, end);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   367
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    public StringBuilder insert(int offset, boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        super.insert(offset, b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   376
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    public StringBuilder insert(int offset, char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        super.insert(offset, c);
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   385
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    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
   387
        super.insert(offset, i);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   388
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   394
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    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
   396
        super.insert(offset, l);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   397
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   403
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    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
   405
        super.insert(offset, f);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   406
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * @throws StringIndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     */
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   412
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    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
   414
        super.insert(offset, d);
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   415
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   418
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    public int indexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   420
        return super.indexOf(str);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   423
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    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
   425
        return super.indexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   428
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    public int lastIndexOf(String str) {
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   430
        return super.lastIndexOf(str);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   433
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    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
   435
        return super.lastIndexOf(str, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   438
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    public StringBuilder reverse() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        super.reverse();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
14332
451c5dd717dc 6206780: (str) Forwarding append methods in String{Buffer,Builder} are inconsistent
jgish
parents: 5506
diff changeset
   444
    @Override
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   445
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        // Create a copy, don't share the array
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   448
        return isLatin1() ? StringLatin1.newString(value, 0, count)
34517
c6e795a80c80 8142303: C2 compilation fails with "bad AD file"
thartmann
parents: 33663
diff changeset
   449
                          : StringUTF16.newString(value, 0, count);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    /**
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   453
     * Save the state of the {@code StringBuilder} instance to a stream
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * (that is, serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @serialData the number of characters currently stored in the string
14997
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   457
     *             builder ({@code int}), followed by the characters in the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   458
     *             string builder ({@code char[]}).   The length of the
97d6098fd419 8005118: Javadoc styles are inconsistent
jgish
parents: 14342
diff changeset
   459
     *             {@code char} array may be greater than the number of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     *             characters currently stored in the string builder, in which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     *             case extra characters are ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        s.writeInt(count);
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   467
        char[] val = new char[capacity()];
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   468
        if (isLatin1()) {
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   469
            StringLatin1.getChars(value, 0, count, val, 0);
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   470
        } else {
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   471
            StringUTF16.getChars(value, 0, count, val, 0);
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   472
        }
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   473
        s.writeObject(val);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * readObject is called to restore the state of the StringBuffer from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * a stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        count = s.readInt();
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   484
        char[] val = (char[]) s.readObject();
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 31671
diff changeset
   485
        initBytes(val, 0, val.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
}