jdk/src/share/classes/java/lang/String.java
author jgish
Fri, 27 Jul 2012 16:17:11 -0400
changeset 13404 8e63aa2e956c
parent 13156 e88d9099b6f0
child 14014 da3648e13e67
permissions -rw-r--r--
6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence) Summary: Change contentEquals( CharSequence cs ) to do synchronization if cs is a StringBuffer Reviewed-by: mduigou Contributed-by: Jim Gish <jim.gish@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
13404
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
     2
 * Copyright (c) 1994, 2012, 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: 5469
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: 5469
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: 5469
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5469
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5469
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.ObjectStreamField;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.UnsupportedEncodingException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.nio.charset.Charset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.ArrayList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.Comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.Formatter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Locale;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.regex.Matcher;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.regex.Pattern;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.util.regex.PatternSyntaxException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
/**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    41
 * The {@code String} class represents character strings. All
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    42
 * string literals in Java programs, such as {@code "abc"}, are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * implemented as instances of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * Strings are constant; their values cannot be changed after they
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * are created. String buffers support mutable strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Because String objects are immutable they can be shared. For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *     String str = "abc";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * </pre></blockquote><p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * is equivalent to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *     char data[] = {'a', 'b', 'c'};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *     String str = new String(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * </pre></blockquote><p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * Here are some more examples of how strings can be used:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *     System.out.println("abc");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *     String cde = "cde";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *     System.out.println("abc" + cde);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *     String c = "abc".substring(2,3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *     String d = cde.substring(1, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    65
 * The class {@code String} includes methods for examining
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * individual characters of the sequence, for comparing strings, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * searching strings, for extracting substrings, and for creating a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * copy of a string with all characters translated to uppercase or to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * lowercase. Case mapping is based on the Unicode Standard version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * specified by the {@link java.lang.Character Character} class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * The Java language provides special support for the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * concatenation operator (&nbsp;+&nbsp;), and for conversion of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * other objects to strings. String concatenation is implemented
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    75
 * through the {@code StringBuilder}(or {@code StringBuffer})
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    76
 * class and its {@code append} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * String conversions are implemented through the method
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    78
 * {@code toString}, defined by {@code Object} and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * inherited by all classes in Java. For additional information on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * string concatenation and conversion, see Gosling, Joy, and Steele,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <i>The Java Language Specification</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * <p> Unless otherwise noted, passing a <tt>null</tt> argument to a constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * or method in this class will cause a {@link NullPointerException} to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    87
 * <p>A {@code String} represents a string in the UTF-16 format
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * in which <em>supplementary characters</em> are represented by <em>surrogate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * pairs</em> (see the section <a href="Character.html#unicode">Unicode
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    90
 * Character Representations</a> in the {@code Character} class for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * more information).
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    92
 * Index values refer to {@code char} code units, so a supplementary
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    93
 * character uses two positions in a {@code String}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    94
 * <p>The {@code String} class provides methods for dealing with
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * Unicode code points (i.e., characters), in addition to those for
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
    96
 * dealing with Unicode code units (i.e., {@code char} values).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * @author  Lee Boynton
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * @author  Arthur van Hoff
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   100
 * @author  Martin Buchholz
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   101
 * @author  Ulf Zibis
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * @see     java.lang.Object#toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * @see     java.lang.StringBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * @see     java.lang.StringBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * @see     java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * @since   JDK1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
public final class String
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   110
    implements java.io.Serializable, Comparable<String>, CharSequence {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /** The value is used for character storage. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private final char value[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /** Cache the hash code for the string */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    private int hash; // Default to 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /** use serialVersionUID from JDK 1.0.2 for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    private static final long serialVersionUID = -6849794470754667710L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * Class String is special cased within the Serialization Stream Protocol.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * A String instance is written initially into an ObjectOutputStream in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * following format:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * <pre>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   126
     *      {@code TC_STRING} (utf String)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * </pre>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   128
     * The String is written by method {@code DataOutput.writeUTF}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * A new handle is generated to  refer to all future references to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * string instance within the stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    private static final ObjectStreamField[] serialPersistentFields =
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   133
            new ObjectStreamField[0];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Initializes a newly created {@code String} object so that it represents
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * an empty character sequence.  Note that use of this constructor is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * unnecessary since Strings are immutable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    public String() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        this.value = new char[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * Initializes a newly created {@code String} object so that it represents
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * the same sequence of characters as the argument; in other words, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * newly created string is a copy of the argument string. Unless an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * explicit copy of {@code original} is needed, use of this constructor is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * unnecessary since Strings are immutable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @param  original
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *         A {@code String}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public String(String original) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   155
        this.value = original.value;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   156
        this.hash = original.hash;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Allocates a new {@code String} so that it represents the sequence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * characters currently contained in the character array argument. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * contents of the character array are copied; subsequent modification of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * the character array does not affect the newly created string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @param  value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     *         The initial value of the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public String(char value[]) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   169
        this.value = Arrays.copyOf(value, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * Allocates a new {@code String} that contains characters from a subarray
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * of the character array argument. The {@code offset} argument is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * index of the first character of the subarray and the {@code count}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * argument specifies the length of the subarray. The contents of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * subarray are copied; subsequent modification of the character array does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * not affect the newly created string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param  value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     *         Array that is the source of characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @param  offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     *         The initial offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * @param  count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     *         The length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *          If the {@code offset} and {@code count} arguments index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *          characters outside the bounds of the {@code value} array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public String(char value[], int offset, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (offset < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            throw new StringIndexOutOfBoundsException(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        if (count < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            throw new StringIndexOutOfBoundsException(count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        // Note: offset or count might be near -1>>>1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (offset > value.length - count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            throw new StringIndexOutOfBoundsException(offset + count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        this.value = Arrays.copyOfRange(value, offset, offset+count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * Allocates a new {@code String} that contains characters from a subarray
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * of the <a href="Character.html#unicode">Unicode code point</a> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * argument.  The {@code offset} argument is the index of the first code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * point of the subarray and the {@code count} argument specifies the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * length of the subarray.  The contents of the subarray are converted to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * {@code char}s; subsequent modification of the {@code int} array does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * affect the newly created string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @param  codePoints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *         Array that is the source of Unicode code points
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * @param  offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *         The initial offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @param  count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     *         The length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *          If any invalid Unicode code point is found in {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *          codePoints}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *          If the {@code offset} and {@code count} arguments index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     *          characters outside the bounds of the {@code codePoints} array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    public String(int[] codePoints, int offset, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        if (offset < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            throw new StringIndexOutOfBoundsException(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        if (count < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            throw new StringIndexOutOfBoundsException(count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        // Note: offset or count might be near -1>>>1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        if (offset > codePoints.length - count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            throw new StringIndexOutOfBoundsException(offset + count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   247
        final int end = offset + count;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   248
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        // Pass 1: Compute precise size of char[]
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   250
        int n = count;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   251
        for (int i = offset; i < end; i++) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            int c = codePoints[i];
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   253
            if (Character.isBmpCodePoint(c))
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   254
                continue;
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   255
            else if (Character.isValidCodePoint(c))
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   256
                n++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            else throw new IllegalArgumentException(Integer.toString(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        // Pass 2: Allocate and fill in char[]
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   261
        final char[] v = new char[n];
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   262
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   263
        for (int i = offset, j = 0; i < end; i++, j++) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            int c = codePoints[i];
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   265
            if (Character.isBmpCodePoint(c))
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   266
                v[j] = (char)c;
5986
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   267
            else
04eb44085c00 6934265: Add public method Character.isBmpCodePoint
martin
parents: 5506
diff changeset
   268
                Character.toSurrogates(c, v, j++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   271
        this.value = v;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * Allocates a new {@code String} constructed from a subarray of an array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * of 8-bit integer values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * <p> The {@code offset} argument is the index of the first byte of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * subarray, and the {@code count} argument specifies the length of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * subarray.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * <p> Each {@code byte} in the subarray is converted to a {@code char} as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * specified in the method above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * @deprecated This method does not properly convert bytes into characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * As of JDK&nbsp;1.1, the preferred way to do this is via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * {@code String} constructors that take a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * java.nio.charset.Charset}, charset name, or that use the platform's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * default charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * @param  ascii
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *         The bytes to be converted to characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @param  hibyte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *         The top 8 bits of each 16-bit Unicode code unit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * @param  offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *         The initial offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * @param  count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     *         The length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     *          If the {@code offset} or {@code count} argument is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @see  #String(byte[], int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * @see  #String(byte[], int, int, java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @see  #String(byte[], int, int, java.nio.charset.Charset)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * @see  #String(byte[], int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @see  #String(byte[], java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @see  #String(byte[], java.nio.charset.Charset)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * @see  #String(byte[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    public String(byte ascii[], int hibyte, int offset, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        checkBounds(ascii, offset, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        char value[] = new char[count];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        if (hibyte == 0) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   319
            for (int i = count; i-- > 0;) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   320
                value[i] = (char)(ascii[i + offset] & 0xff);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            hibyte <<= 8;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   324
            for (int i = count; i-- > 0;) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   325
                value[i] = (char)(hibyte | (ascii[i + offset] & 0xff));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * Allocates a new {@code String} containing characters constructed from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * an array of 8-bit integer values. Each character <i>c</i>in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * resulting string is constructed from the corresponding component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * <i>b</i> in the byte array such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *     <b><i>c</i></b> == (char)(((hibyte &amp; 0xff) &lt;&lt; 8)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *                         | (<b><i>b</i></b> &amp; 0xff))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @deprecated  This method does not properly convert bytes into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * characters.  As of JDK&nbsp;1.1, the preferred way to do this is via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * {@code String} constructors that take a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * java.nio.charset.Charset}, charset name, or that use the platform's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * default charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * @param  ascii
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     *         The bytes to be converted to characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * @param  hibyte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *         The top 8 bits of each 16-bit Unicode code unit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @see  #String(byte[], int, int, java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * @see  #String(byte[], int, int, java.nio.charset.Charset)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * @see  #String(byte[], int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @see  #String(byte[], java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * @see  #String(byte[], java.nio.charset.Charset)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @see  #String(byte[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    public String(byte ascii[], int hibyte) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        this(ascii, hibyte, 0, ascii.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    /* Common private utility method used to bounds check the byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * and requested offset & length values used by the String(byte[],..)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * constructors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    private static void checkBounds(byte[] bytes, int offset, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        if (length < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
            throw new StringIndexOutOfBoundsException(length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        if (offset < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            throw new StringIndexOutOfBoundsException(offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        if (offset > bytes.length - length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
            throw new StringIndexOutOfBoundsException(offset + length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * Constructs a new {@code String} by decoding the specified subarray of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * bytes using the specified charset.  The length of the new {@code String}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * is a function of the charset, and hence may not be equal to the length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * of the subarray.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * <p> The behavior of this constructor when the given bytes are not valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * in the given charset is unspecified.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * java.nio.charset.CharsetDecoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * over the decoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * @param  bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *         The bytes to be decoded into characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * @param  offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *         The index of the first byte to decode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @param  length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     *         The number of bytes to decode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * @param  charsetName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     *         The name of a supported {@linkplain java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *         charset}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * @throws  UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     *          If the named charset is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     *          If the {@code offset} and {@code length} arguments index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     *          characters outside the bounds of the {@code bytes} array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * @since  JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    public String(byte bytes[], int offset, int length, String charsetName)
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   413
            throws UnsupportedEncodingException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        if (charsetName == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            throw new NullPointerException("charsetName");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        checkBounds(bytes, offset, length);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   417
        this.value = StringCoding.decode(charsetName, bytes, offset, length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * Constructs a new {@code String} by decoding the specified subarray of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * bytes using the specified {@linkplain java.nio.charset.Charset charset}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * The length of the new {@code String} is a function of the charset, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * hence may not be equal to the length of the subarray.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * <p> This method always replaces malformed-input and unmappable-character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * sequences with this charset's default replacement string.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * java.nio.charset.CharsetDecoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * over the decoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * @param  bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *         The bytes to be decoded into characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * @param  offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     *         The index of the first byte to decode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @param  length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *         The number of bytes to decode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * @param  charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     *         The {@linkplain java.nio.charset.Charset charset} to be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     *         decode the {@code bytes}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     *          If the {@code offset} and {@code length} arguments index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     *          characters outside the bounds of the {@code bytes} array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * @since  1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    public String(byte bytes[], int offset, int length, Charset charset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        if (charset == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
            throw new NullPointerException("charset");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        checkBounds(bytes, offset, length);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   454
        this.value =  StringCoding.decode(charset, bytes, offset, length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * Constructs a new {@code String} by decoding the specified array of bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * using the specified {@linkplain java.nio.charset.Charset charset}.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * length of the new {@code String} is a function of the charset, and hence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * may not be equal to the length of the byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * <p> The behavior of this constructor when the given bytes are not valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * in the given charset is unspecified.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * java.nio.charset.CharsetDecoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * over the decoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * @param  bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     *         The bytes to be decoded into characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @param  charsetName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     *         The name of a supported {@linkplain java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     *         charset}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * @throws  UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     *          If the named charset is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @since  JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    public String(byte bytes[], String charsetName)
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   481
            throws UnsupportedEncodingException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        this(bytes, 0, bytes.length, charsetName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * Constructs a new {@code String} by decoding the specified array of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * bytes using the specified {@linkplain java.nio.charset.Charset charset}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * The length of the new {@code String} is a function of the charset, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * hence may not be equal to the length of the byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * <p> This method always replaces malformed-input and unmappable-character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * sequences with this charset's default replacement string.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * java.nio.charset.CharsetDecoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * over the decoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * @param  bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     *         The bytes to be decoded into characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * @param  charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     *         The {@linkplain java.nio.charset.Charset charset} to be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     *         decode the {@code bytes}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * @since  1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    public String(byte bytes[], Charset charset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        this(bytes, 0, bytes.length, charset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * Constructs a new {@code String} by decoding the specified subarray of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * bytes using the platform's default charset.  The length of the new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * {@code String} is a function of the charset, and hence may not be equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * to the length of the subarray.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * <p> The behavior of this constructor when the given bytes are not valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * in the default charset is unspecified.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * java.nio.charset.CharsetDecoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * over the decoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * @param  bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     *         The bytes to be decoded into characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * @param  offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     *         The index of the first byte to decode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * @param  length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     *         The number of bytes to decode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     *          If the {@code offset} and the {@code length} arguments index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     *          characters outside the bounds of the {@code bytes} array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * @since  JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    public String(byte bytes[], int offset, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        checkBounds(bytes, offset, length);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   537
        this.value = StringCoding.decode(bytes, offset, length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * Constructs a new {@code String} by decoding the specified array of bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * using the platform's default charset.  The length of the new {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * String} is a function of the charset, and hence may not be equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * length of the byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * <p> The behavior of this constructor when the given bytes are not valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * in the default charset is unspecified.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * java.nio.charset.CharsetDecoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * over the decoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @param  bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     *         The bytes to be decoded into characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * @since  JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    public String(byte bytes[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        this(bytes, 0, bytes.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * Allocates a new string that contains the sequence of characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * currently contained in the string buffer argument. The contents of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * string buffer are copied; subsequent modification of the string buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * does not affect the newly created string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * @param  buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     *         A {@code StringBuffer}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    public String(StringBuffer buffer) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   570
        synchronized(buffer) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   571
            this.value = Arrays.copyOf(buffer.getValue(), buffer.length());
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   572
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * Allocates a new string that contains the sequence of characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * currently contained in the string builder argument. The contents of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * string builder are copied; subsequent modification of the string builder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * does not affect the newly created string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * <p> This constructor is provided to ease migration to {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * StringBuilder}. Obtaining a string from a string builder via the {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * toString} method is likely to run faster and is generally preferred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * @param   builder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     *          A {@code StringBuilder}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    public String(StringBuilder builder) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   591
        this.value = Arrays.copyOf(builder.getValue(), builder.length());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   594
    /*
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   595
    * Package private constructor which shares value array for speed.
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   596
    * this constructor is always expected to be called with share==true.
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   597
    * a separate constructor is needed because we already have a public
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   598
    * String(char[]) constructor that makes a copy of the given char[].
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   599
    */
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   600
    String(char[] value, boolean share) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   601
        // assert share : "unshared not supported";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * Returns the length of this string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * The length is equal to the number of <a href="Character.html#unicode">Unicode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * code units</a> in the string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * @return  the length of the sequence of characters represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     *          object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    public int length() {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   614
        return value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * Returns <tt>true</tt> if, and only if, {@link #length()} is <tt>0</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * @return <tt>true</tt> if {@link #length()} is <tt>0</tt>, otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * <tt>false</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    public boolean isEmpty() {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   626
        return value.length == 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   630
     * Returns the {@code char} value at the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   631
     * specified index. An index ranges from {@code 0} to
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   632
     * {@code length() - 1}. The first {@code char} value of the sequence
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   633
     * is at index {@code 0}, the next at index {@code 1},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * and so on, as for array indexing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   636
     * <p>If the {@code char} value specified by the index is a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * <a href="Character.html#unicode">surrogate</a>, the surrogate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * value is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   640
     * @param      index   the index of the {@code char} value.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   641
     * @return     the {@code char} value at the specified index of this string.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   642
     *             The first {@code char} value is at index {@code 0}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   643
     * @exception  IndexOutOfBoundsException  if the {@code index}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     *             argument is negative or not less than the length of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     *             string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    public char charAt(int index) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   648
        if ((index < 0) || (index >= value.length)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            throw new StringIndexOutOfBoundsException(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   651
        return value[index];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * Returns the character (Unicode code point) at the specified
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   656
     * index. The index refers to {@code char} values
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   657
     * (Unicode code units) and ranges from {@code 0} to
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   658
     * {@link #length()}{@code  - 1}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   660
     * <p> If the {@code char} value specified at the given index
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * is in the high-surrogate range, the following index is less
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   662
     * than the length of this {@code String}, and the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   663
     * {@code char} value at the following index is in the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * low-surrogate range, then the supplementary code point
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * corresponding to this surrogate pair is returned. Otherwise,
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   666
     * the {@code char} value at the given index is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   668
     * @param      index the index to the {@code char} values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * @return     the code point value of the character at the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   670
     *             {@code index}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   671
     * @exception  IndexOutOfBoundsException  if the {@code index}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     *             argument is negative or not less than the length of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     *             string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * @since      1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    public int codePointAt(int index) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   677
        if ((index < 0) || (index >= value.length)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
            throw new StringIndexOutOfBoundsException(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   680
        return Character.codePointAtImpl(value, index, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * Returns the character (Unicode code point) before the specified
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   685
     * index. The index refers to {@code char} values
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   686
     * (Unicode code units) and ranges from {@code 1} to {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * CharSequence#length() length}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   689
     * <p> If the {@code char} value at {@code (index - 1)}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   690
     * is in the low-surrogate range, {@code (index - 2)} is not
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   691
     * negative, and the {@code char} value at {@code (index -
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   692
     * 2)} is in the high-surrogate range, then the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * supplementary code point value of the surrogate pair is
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   694
     * returned. If the {@code char} value at {@code index -
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   695
     * 1} is an unpaired low-surrogate or a high-surrogate, the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * surrogate value is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * @param     index the index following the code point that should be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * @return    the Unicode code point value before the given index.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   700
     * @exception IndexOutOfBoundsException if the {@code index}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     *            argument is less than 1 or greater than the length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     *            of this string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * @since     1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    public int codePointBefore(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        int i = index - 1;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   707
        if ((i < 0) || (i >= value.length)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
            throw new StringIndexOutOfBoundsException(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   710
        return Character.codePointBeforeImpl(value, index, 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * Returns the number of Unicode code points in the specified text
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   715
     * range of this {@code String}. The text range begins at the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   716
     * specified {@code beginIndex} and extends to the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   717
     * {@code char} at index {@code endIndex - 1}. Thus the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   718
     * length (in {@code char}s) of the text range is
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   719
     * {@code endIndex-beginIndex}. Unpaired surrogates within
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * the text range count as one code point each.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   722
     * @param beginIndex the index to the first {@code char} of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * the text range.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   724
     * @param endIndex the index after the last {@code char} of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * the text range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * @return the number of Unicode code points in the specified text
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * @exception IndexOutOfBoundsException if the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   729
     * {@code beginIndex} is negative, or {@code endIndex}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   730
     * is larger than the length of this {@code String}, or
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   731
     * {@code beginIndex} is larger than {@code endIndex}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    public int codePointCount(int beginIndex, int endIndex) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   735
        if (beginIndex < 0 || endIndex > value.length || beginIndex > endIndex) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   738
        return Character.codePointCountImpl(value, beginIndex, endIndex - beginIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   742
     * Returns the index within this {@code String} that is
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   743
     * offset from the given {@code index} by
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   744
     * {@code codePointOffset} code points. Unpaired surrogates
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   745
     * within the text range given by {@code index} and
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   746
     * {@code codePointOffset} count as one code point each.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * @param index the index to be offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * @param codePointOffset the offset in code points
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   750
     * @return the index within this {@code String}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   751
     * @exception IndexOutOfBoundsException if {@code index}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     *   is negative or larger then the length of this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   753
     *   {@code String}, or if {@code codePointOffset} is positive
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   754
     *   and the substring starting with {@code index} has fewer
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   755
     *   than {@code codePointOffset} code points,
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   756
     *   or if {@code codePointOffset} is negative and the substring
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   757
     *   before {@code index} has fewer than the absolute value
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   758
     *   of {@code codePointOffset} code points.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    public int offsetByCodePoints(int index, int codePointOffset) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   762
        if (index < 0 || index > value.length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   765
        return Character.offsetByCodePointsImpl(value, 0, value.length,
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   766
                index, codePointOffset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * Copy characters from this string into dst starting at dstBegin.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * This method doesn't perform any range checking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    void getChars(char dst[], int dstBegin) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   774
        System.arraycopy(value, 0, dst, dstBegin, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     * Copies characters from this string into the destination character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   781
     * The first character to be copied is at index {@code srcBegin};
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   782
     * the last character to be copied is at index {@code srcEnd-1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     * (thus the total number of characters to be copied is
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   784
     * {@code srcEnd-srcBegin}). The characters are copied into the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   785
     * subarray of {@code dst} starting at index {@code dstBegin}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * and ending at index:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * <p><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     *     dstbegin + (srcEnd-srcBegin) - 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * @param      srcBegin   index of the first character in the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     *                        to copy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * @param      srcEnd     index after the last character in the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     *                        to copy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * @param      dst        the destination array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * @param      dstBegin   the start offset in the destination array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * @exception IndexOutOfBoundsException If any of the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     *            is true:
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   799
     *            <ul><li>{@code srcBegin} is negative.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   800
     *            <li>{@code srcBegin} is greater than {@code srcEnd}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   801
     *            <li>{@code srcEnd} is greater than the length of this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     *                string
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   803
     *            <li>{@code dstBegin} is negative
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   804
     *            <li>{@code dstBegin+(srcEnd-srcBegin)} is larger than
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
   805
     *                {@code dst.length}</ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        if (srcBegin < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
            throw new StringIndexOutOfBoundsException(srcBegin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   811
        if (srcEnd > value.length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
            throw new StringIndexOutOfBoundsException(srcEnd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        if (srcBegin > srcEnd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
            throw new StringIndexOutOfBoundsException(srcEnd - srcBegin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   817
        System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * Copies characters from this string into the destination byte array. Each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
     * byte receives the 8 low-order bits of the corresponding character. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     * eight high-order bits of each character are not copied and do not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * participate in the transfer in any way.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     * <p> The first character to be copied is at index {@code srcBegin}; the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
     * last character to be copied is at index {@code srcEnd-1}.  The total
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
     * number of characters to be copied is {@code srcEnd-srcBegin}. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     * characters, converted to bytes, are copied into the subarray of {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
     * dst} starting at index {@code dstBegin} and ending at index:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
     *     dstbegin + (srcEnd-srcBegin) - 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     * @deprecated  This method does not properly convert characters into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     * bytes.  As of JDK&nbsp;1.1, the preferred way to do this is via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * {@link #getBytes()} method, which uses the platform's default charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     * @param  srcBegin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     *         Index of the first character in the string to copy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
     * @param  srcEnd
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     *         Index after the last character in the string to copy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     * @param  dst
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     *         The destination array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     * @param  dstBegin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     *         The start offset in the destination array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     *          If any of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     *          <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     *            <li> {@code srcBegin} is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     *            <li> {@code srcBegin} is greater than {@code srcEnd}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     *            <li> {@code srcEnd} is greater than the length of this String
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
     *            <li> {@code dstBegin} is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
     *            <li> {@code dstBegin+(srcEnd-srcBegin)} is larger than {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     *                 dst.length}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     *          </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
    public void getBytes(int srcBegin, int srcEnd, byte dst[], int dstBegin) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        if (srcBegin < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
            throw new StringIndexOutOfBoundsException(srcBegin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   868
        if (srcEnd > value.length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
            throw new StringIndexOutOfBoundsException(srcEnd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
        if (srcBegin > srcEnd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            throw new StringIndexOutOfBoundsException(srcEnd - srcBegin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        int j = dstBegin;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   875
        int n = srcEnd;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   876
        int i = srcBegin;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        char[] val = value;   /* avoid getfield opcode */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        while (i < n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            dst[j++] = (byte)val[i++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * Encodes this {@code String} into a sequence of bytes using the named
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * charset, storing the result into a new byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * <p> The behavior of this method when this string cannot be encoded in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     * the given charset is unspecified.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * java.nio.charset.CharsetEncoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * over the encoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * @param  charsetName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     *         The name of a supported {@linkplain java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     *         charset}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * @return  The resultant byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * @throws  UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     *          If the named charset is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     * @since  JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    public byte[] getBytes(String charsetName)
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   905
            throws UnsupportedEncodingException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        if (charsetName == null) throw new NullPointerException();
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   907
        return StringCoding.encode(charsetName, value, 0, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     * Encodes this {@code String} into a sequence of bytes using the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     * {@linkplain java.nio.charset.Charset charset}, storing the result into a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     * new byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
     * <p> This method always replaces malformed-input and unmappable-character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     * sequences with this charset's default replacement byte array.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
     * {@link java.nio.charset.CharsetEncoder} class should be used when more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * control over the encoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     * @param  charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     *         The {@linkplain java.nio.charset.Charset} to be used to encode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     *         the {@code String}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     * @return  The resultant byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     * @since  1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    public byte[] getBytes(Charset charset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
        if (charset == null) throw new NullPointerException();
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   930
        return StringCoding.encode(charset, value, 0, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     * Encodes this {@code String} into a sequence of bytes using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     * platform's default charset, storing the result into a new byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     * <p> The behavior of this method when this string cannot be encoded in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
     * the default charset is unspecified.  The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     * java.nio.charset.CharsetEncoder} class should be used when more control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * over the encoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     * @return  The resultant byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * @since      JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
    public byte[] getBytes() {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   947
        return StringCoding.encode(value, 0, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     * Compares this string to the specified object.  The result is {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     * true} if and only if the argument is not {@code null} and is a {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     * String} object that represents the same sequence of characters as this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     * object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     * @param  anObject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     *         The object to compare this {@code String} against
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * @return  {@code true} if the given object represents a {@code String}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     *          equivalent to this string, {@code false} otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     * @see  #compareTo(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     * @see  #equalsIgnoreCase(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
    public boolean equals(Object anObject) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        if (this == anObject) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        if (anObject instanceof String) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   970
            String anotherString = (String) anObject;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   971
            int n = value.length;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   972
            if (n == anotherString.value.length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                char v1[] = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
                char v2[] = anotherString.value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   975
                int i = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                while (n-- != 0) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   977
                    if (v1[i] != v2[i])
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   978
                            return false;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
   979
                    i++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * Compares this string to the specified {@code StringBuffer}.  The result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * is {@code true} if and only if this {@code String} represents the same
13404
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
   990
     * sequence of characters as the specified {@code StringBuffer}. This method
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
   991
     * synchronizes on the {@code StringBuffer}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * @param  sb
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     *         The {@code StringBuffer} to compare this {@code String} against
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     * @return  {@code true} if this {@code String} represents the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
     *          sequence of characters as the specified {@code StringBuffer},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     *          {@code false} otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
    public boolean contentEquals(StringBuffer sb) {
13404
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1003
        return contentEquals((CharSequence) sb);
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1004
    }
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1005
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1006
    private boolean nonSyncContentEquals(AbstractStringBuilder sb) {
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1007
        char v1[] = value;
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1008
        char v2[] = sb.getValue();
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1009
        int i = 0;
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1010
        int n = value.length;
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1011
        while (n-- != 0) {
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1012
            if (v1[i] != v2[i]) {
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1013
                return false;
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1014
            }
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1015
            i++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        }
13404
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1017
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    /**
13404
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1021
     * Compares this string to the specified {@code CharSequence}.  The
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1022
     * result is {@code true} if and only if this {@code String} represents the
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1023
     * same sequence of char values as the specified sequence. Note that if the
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1024
     * {@code CharSequence} is a {@code StringBuffer} then the method
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1025
     * synchronizes on it.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * @param  cs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
     *         The sequence to compare this {@code String} against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * @return  {@code true} if this {@code String} represents the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     *          sequence of char values as the specified sequence, {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     *          false} otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    public boolean contentEquals(CharSequence cs) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1037
        if (value.length != cs.length())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        // Argument is a StringBuffer, StringBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
        if (cs instanceof AbstractStringBuilder) {
13404
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1041
            if (cs instanceof StringBuffer) {
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1042
                synchronized(cs) {
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1043
                   return nonSyncContentEquals((AbstractStringBuilder)cs);
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1044
                }
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1045
            } else {
8e63aa2e956c 6914123: (str) Missing synchronization in java.lang.String#contentEquals(CharSequence)
jgish
parents: 13156
diff changeset
  1046
                return nonSyncContentEquals((AbstractStringBuilder)cs);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
        // Argument is a String
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        if (cs.equals(this))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
        // Argument is a generic CharSequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
        char v1[] = value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1054
        int i = 0;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1055
        int n = value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
        while (n-- != 0) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1057
            if (v1[i] != cs.charAt(i))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
                return false;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1059
            i++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
     * Compares this {@code String} to another {@code String}, ignoring case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
     * considerations.  Two strings are considered equal ignoring case if they
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     * are of the same length and corresponding characters in the two strings
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     * are equal ignoring case.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     * <p> Two characters {@code c1} and {@code c2} are considered the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * ignoring case if at least one of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     *   <li> The two characters are the same (as compared by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     *        {@code ==} operator)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     *   <li> Applying the method {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     *        java.lang.Character#toUpperCase(char)} to each character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     *        produces the same result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     *   <li> Applying the method {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     *        java.lang.Character#toLowerCase(char)} to each character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
     *        produces the same result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
     * @param  anotherString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
     *         The {@code String} to compare this {@code String} against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
     * @return  {@code true} if the argument is not {@code null} and it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
     *          represents an equivalent {@code String} ignoring case; {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
     *          false} otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
     * @see  #equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
    public boolean equalsIgnoreCase(String anotherString) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1093
        return (this == anotherString) ? true
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1094
                : (anotherString != null)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1095
                && (anotherString.value.length == value.length)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1096
                && regionMatches(true, 0, anotherString, 0, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * Compares two strings lexicographically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     * The comparison is based on the Unicode value of each character in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     * the strings. The character sequence represented by this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1103
     * {@code String} object is compared lexicographically to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     * character sequence represented by the argument string. The result is
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1105
     * a negative integer if this {@code String} object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     * lexicographically precedes the argument string. The result is a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1107
     * positive integer if this {@code String} object lexicographically
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     * follows the argument string. The result is zero if the strings
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1109
     * are equal; {@code compareTo} returns {@code 0} exactly when
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1110
     * the {@link #equals(Object)} method would return {@code true}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     * This is the definition of lexicographic ordering. If two strings are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     * different, then either they have different characters at some index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     * that is a valid index for both strings, or their lengths are different,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     * or both. If they have different characters at one or more index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     * positions, let <i>k</i> be the smallest such index; then the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     * whose character at position <i>k</i> has the smaller value, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     * determined by using the &lt; operator, lexicographically precedes the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1119
     * other string. In this case, {@code compareTo} returns the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1120
     * difference of the two character values at position {@code k} in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * the two string -- that is, the value:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     * this.charAt(k)-anotherString.charAt(k)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
     * If there is no index position at which they differ, then the shorter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     * string lexicographically precedes the longer string. In this case,
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1127
     * {@code compareTo} returns the difference of the lengths of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     * strings -- that is, the value:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     * this.length()-anotherString.length()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1133
     * @param   anotherString   the {@code String} to be compared.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1134
     * @return  the value {@code 0} if the argument string is equal to
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1135
     *          this string; a value less than {@code 0} if this string
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     *          is lexicographically less than the string argument; and a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1137
     *          value greater than {@code 0} if this string is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     *          lexicographically greater than the string argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
    public int compareTo(String anotherString) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1141
        int len1 = value.length;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1142
        int len2 = anotherString.value.length;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1143
        int lim = Math.min(len1, len2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        char v1[] = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
        char v2[] = anotherString.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1147
        int k = 0;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1148
        while (k < lim) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1149
            char c1 = v1[k];
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1150
            char c2 = v2[k];
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1151
            if (c1 != c2) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1152
                return c1 - c2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1154
            k++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        return len1 - len2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1160
     * A Comparator that orders {@code String} objects as by
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1161
     * {@code compareToIgnoreCase}. This comparator is serializable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     * Note that this Comparator does <em>not</em> take locale into account,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * and will result in an unsatisfactory ordering for certain locales.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     * The java.text package provides <em>Collators</em> to allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     * locale-sensitive ordering.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     * @see     java.text.Collator#compare(String, String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
    public static final Comparator<String> CASE_INSENSITIVE_ORDER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
                                         = new CaseInsensitiveComparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
    private static class CaseInsensitiveComparator
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1174
            implements Comparator<String>, java.io.Serializable {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        // use serialVersionUID from JDK 1.2.2 for interoperability
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
        private static final long serialVersionUID = 8575799808933029326L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        public int compare(String s1, String s2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
            int n1 = s1.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
            int n2 = s2.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
            int min = Math.min(n1, n2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
            for (int i = 0; i < min; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
                char c1 = s1.charAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
                char c2 = s2.charAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
                if (c1 != c2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
                    c1 = Character.toUpperCase(c1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
                    c2 = Character.toUpperCase(c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
                    if (c1 != c2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
                        c1 = Character.toLowerCase(c1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
                        c2 = Character.toLowerCase(c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
                        if (c1 != c2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
                            // No overflow because of numeric promotion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
                            return c1 - c2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
            return n1 - n2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
        }
11127
6d29e4d16530 5035850: (str) String.CASE_INSENSITIVE_ORDER should override readResolve()
sherman
parents: 9266
diff changeset
  1200
6d29e4d16530 5035850: (str) String.CASE_INSENSITIVE_ORDER should override readResolve()
sherman
parents: 9266
diff changeset
  1201
        /** Replaces the de-serialized object. */
6d29e4d16530 5035850: (str) String.CASE_INSENSITIVE_ORDER should override readResolve()
sherman
parents: 9266
diff changeset
  1202
        private Object readResolve() { return CASE_INSENSITIVE_ORDER; }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     * Compares two strings lexicographically, ignoring case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
     * differences. This method returns an integer whose sign is that of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1208
     * calling {@code compareTo} with normalized versions of the strings
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     * where case differences have been eliminated by calling
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1210
     * {@code Character.toLowerCase(Character.toUpperCase(character))} on
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     * each character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
     * Note that this method does <em>not</em> take locale into account,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
     * and will result in an unsatisfactory ordering for certain locales.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
     * The java.text package provides <em>collators</em> to allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     * locale-sensitive ordering.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1218
     * @param   str   the {@code String} to be compared.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     * @return  a negative integer, zero, or a positive integer as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     *          specified String is greater than, equal to, or less
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     *          than this String, ignoring case considerations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * @see     java.text.Collator#compare(String, String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
    public int compareToIgnoreCase(String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
        return CASE_INSENSITIVE_ORDER.compare(this, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     * Tests if two string regions are equal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
     * A substring of this <tt>String</tt> object is compared to a substring
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
     * of the argument other. The result is true if these substrings
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
     * represent identical character sequences. The substring of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
     * <tt>String</tt> object to be compared begins at index <tt>toffset</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     * and has length <tt>len</tt>. The substring of other to be compared
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     * begins at index <tt>ooffset</tt> and has length <tt>len</tt>. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     * result is <tt>false</tt> if and only if at least one of the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
     * is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
     * <ul><li><tt>toffset</tt> is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
     * <li><tt>ooffset</tt> is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
     * <li><tt>toffset+len</tt> is greater than the length of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
     * <tt>String</tt> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
     * <li><tt>ooffset+len</tt> is greater than the length of the other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
     * argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
     * <li>There is some nonnegative integer <i>k</i> less than <tt>len</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
     * such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
     * <tt>this.charAt(toffset+<i>k</i>)&nbsp;!=&nbsp;other.charAt(ooffset+<i>k</i>)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
     * @param   toffset   the starting offset of the subregion in this string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
     * @param   other     the string argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
     * @param   ooffset   the starting offset of the subregion in the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
     *                    argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
     * @param   len       the number of characters to compare.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1256
     * @return  {@code true} if the specified subregion of this string
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
     *          exactly matches the specified subregion of the string argument;
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1258
     *          {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
    public boolean regionMatches(int toffset, String other, int ooffset,
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1261
            int len) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
        char ta[] = value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1263
        int to = toffset;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        char pa[] = other.value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1265
        int po = ooffset;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
        // Note: toffset, ooffset, or len might be near -1>>>1.
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1267
        if ((ooffset < 0) || (toffset < 0)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1268
                || (toffset > (long)value.length - len)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1269
                || (ooffset > (long)other.value.length - len)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
        while (len-- > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
            if (ta[to++] != pa[po++]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
     * Tests if two string regions are equal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     * A substring of this <tt>String</tt> object is compared to a substring
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
     * of the argument <tt>other</tt>. The result is <tt>true</tt> if these
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
     * substrings represent character sequences that are the same, ignoring
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
     * case if and only if <tt>ignoreCase</tt> is true. The substring of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     * this <tt>String</tt> object to be compared begins at index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     * <tt>toffset</tt> and has length <tt>len</tt>. The substring of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     * <tt>other</tt> to be compared begins at index <tt>ooffset</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * has length <tt>len</tt>. The result is <tt>false</tt> if and only if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     * at least one of the following is true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     * <ul><li><tt>toffset</tt> is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     * <li><tt>ooffset</tt> is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
     * <li><tt>toffset+len</tt> is greater than the length of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
     * <tt>String</tt> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
     * <li><tt>ooffset+len</tt> is greater than the length of the other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
     * argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
     * <li><tt>ignoreCase</tt> is <tt>false</tt> and there is some nonnegative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
     * integer <i>k</i> less than <tt>len</tt> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
     * this.charAt(toffset+k) != other.charAt(ooffset+k)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     * <li><tt>ignoreCase</tt> is <tt>true</tt> and there is some nonnegative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     * integer <i>k</i> less than <tt>len</tt> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
     * Character.toLowerCase(this.charAt(toffset+k)) !=
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1307
     Character.toLowerCase(other.charAt(ooffset+k))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
     * and:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
     * Character.toUpperCase(this.charAt(toffset+k)) !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
     *         Character.toUpperCase(other.charAt(ooffset+k))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1316
     * @param   ignoreCase   if {@code true}, ignore case when comparing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
     *                       characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
     * @param   toffset      the starting offset of the subregion in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
     *                       string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
     * @param   other        the string argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
     * @param   ooffset      the starting offset of the subregion in the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
     *                       argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
     * @param   len          the number of characters to compare.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1324
     * @return  {@code true} if the specified subregion of this string
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
     *          matches the specified subregion of the string argument;
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1326
     *          {@code false} otherwise. Whether the matching is exact
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1327
     *          or case insensitive depends on the {@code ignoreCase}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
     *          argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
    public boolean regionMatches(boolean ignoreCase, int toffset,
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1331
            String other, int ooffset, int len) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
        char ta[] = value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1333
        int to = toffset;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        char pa[] = other.value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1335
        int po = ooffset;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
        // Note: toffset, ooffset, or len might be near -1>>>1.
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1337
        if ((ooffset < 0) || (toffset < 0)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1338
                || (toffset > (long)value.length - len)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1339
                || (ooffset > (long)other.value.length - len)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
        while (len-- > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
            char c1 = ta[to++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
            char c2 = pa[po++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
            if (c1 == c2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
            if (ignoreCase) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
                // If characters don't match but case may be ignored,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
                // try converting both characters to uppercase.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
                // If the results match, then the comparison scan should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
                // continue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
                char u1 = Character.toUpperCase(c1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
                char u2 = Character.toUpperCase(c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
                if (u1 == u2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
                // Unfortunately, conversion to uppercase does not work properly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
                // for the Georgian alphabet, which has strange rules about case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
                // conversion.  So we need to make one last check before
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
                // exiting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
                if (Character.toLowerCase(u1) == Character.toLowerCase(u2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
     * Tests if the substring of this string beginning at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
     * specified index starts with the specified prefix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
     * @param   prefix    the prefix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
     * @param   toffset   where to begin looking in this string.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1377
     * @return  {@code true} if the character sequence represented by the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
     *          argument is a prefix of the substring of this object starting
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1379
     *          at index {@code toffset}; {@code false} otherwise.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1380
     *          The result is {@code false} if {@code toffset} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
     *          negative or greater than the length of this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1382
     *          {@code String} object; otherwise the result is the same
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
     *          as the result of the expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
     *          <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
     *          this.substring(toffset).startsWith(prefix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
     *          </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
    public boolean startsWith(String prefix, int toffset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
        char ta[] = value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1390
        int to = toffset;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
        char pa[] = prefix.value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1392
        int po = 0;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1393
        int pc = prefix.value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
        // Note: toffset might be near -1>>>1.
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1395
        if ((toffset < 0) || (toffset > value.length - pc)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
        while (--pc >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
            if (ta[to++] != pa[po++]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
     * Tests if this string starts with the specified prefix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
     * @param   prefix   the prefix.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1410
     * @return  {@code true} if the character sequence represented by the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
     *          argument is a prefix of the character sequence represented by
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1412
     *          this string; {@code false} otherwise.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1413
     *          Note also that {@code true} will be returned if the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
     *          argument is an empty string or is equal to this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1415
     *          {@code String} object as determined by the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
     *          {@link #equals(Object)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     * @since   1. 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
    public boolean startsWith(String prefix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
        return startsWith(prefix, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
     * Tests if this string ends with the specified suffix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
     * @param   suffix   the suffix.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1427
     * @return  {@code true} if the character sequence represented by the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
     *          argument is a suffix of the character sequence represented by
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1429
     *          this object; {@code false} otherwise. Note that the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1430
     *          result will be {@code true} if the argument is the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1431
     *          empty string or is equal to this {@code String} object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
     *          as determined by the {@link #equals(Object)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
    public boolean endsWith(String suffix) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1435
        return startsWith(suffix, value.length - suffix.value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
     * Returns a hash code for this string. The hash code for a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1440
     * {@code String} object is computed as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
     * s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
     * </pre></blockquote>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1444
     * using {@code int} arithmetic, where {@code s[i]} is the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1445
     * <i>i</i>th character of the string, {@code n} is the length of
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1446
     * the string, and {@code ^} indicates exponentiation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
     * (The hash value of the empty string is zero.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
     * @return  a hash code value for this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
        int h = hash;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1453
        if (h == 0 && value.length > 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
            char val[] = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1456
            for (int i = 0; i < value.length; i++) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1457
                h = 31 * h + val[i];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
            hash = h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
        return h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
     * Returns the index within this string of the first occurrence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
     * the specified character. If a character with value
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1467
     * {@code ch} occurs in the character sequence represented by
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1468
     * this {@code String} object, then the index (in Unicode
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
     * code units) of the first such occurrence is returned. For
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1470
     * values of {@code ch} in the range from 0 to 0xFFFF
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
     * (inclusive), this is the smallest value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
     * this.charAt(<i>k</i>) == ch
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
     * </pre></blockquote>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1475
     * is true. For other values of {@code ch}, it is the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
     * smallest value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
     * this.codePointAt(<i>k</i>) == ch
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
     * is true. In either case, if no such character occurs in this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1481
     * string, then {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
     * @param   ch   a character (Unicode code point).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
     * @return  the index of the first occurrence of the character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
     *          character sequence represented by this object, or
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1486
     *          {@code -1} if the character does not occur.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
    public int indexOf(int ch) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
        return indexOf(ch, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
     * Returns the index within this string of the first occurrence of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
     * specified character, starting the search at the specified index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1496
     * If a character with value {@code ch} occurs in the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1497
     * character sequence represented by this {@code String}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1498
     * object at an index no smaller than {@code fromIndex}, then
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
     * the index of the first such occurrence is returned. For values
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1500
     * of {@code ch} in the range from 0 to 0xFFFF (inclusive),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
     * this is the smallest value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
     * (this.charAt(<i>k</i>) == ch) && (<i>k</i> &gt;= fromIndex)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
     * </pre></blockquote>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1505
     * is true. For other values of {@code ch}, it is the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
     * smallest value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     * (this.codePointAt(<i>k</i>) == ch) && (<i>k</i> &gt;= fromIndex)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
     * is true. In either case, if no such character occurs in this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1511
     * string at or after position {@code fromIndex}, then
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1512
     * {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1515
     * There is no restriction on the value of {@code fromIndex}. If it
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
     * is negative, it has the same effect as if it were zero: this entire
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
     * string may be searched. If it is greater than the length of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
     * string, it has the same effect as if it were equal to the length of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1519
     * this string: {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1521
     * <p>All indices are specified in {@code char} values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
     * (Unicode code units).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
     * @param   ch          a character (Unicode code point).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
     * @param   fromIndex   the index to start the search from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
     * @return  the index of the first occurrence of the character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
     *          character sequence represented by this object that is greater
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1528
     *          than or equal to {@code fromIndex}, or {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
     *          if the character does not occur.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
    public int indexOf(int ch, int fromIndex) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1532
        final int max = value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
        if (fromIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
            fromIndex = 0;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1535
        } else if (fromIndex >= max) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
            // Note: fromIndex might be near -1>>>1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
        if (ch < Character.MIN_SUPPLEMENTARY_CODE_POINT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
            // handle most cases here (ch is a BMP code point or a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
            // negative value (invalid code point))
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1543
            final char[] value = this.value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1544
            for (int i = fromIndex; i < max; i++) {
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1545
                if (value[i] == ch) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1546
                    return i;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
            return -1;
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1550
        } else {
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1551
            return indexOfSupplementary(ch, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
        }
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1553
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1555
    /**
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1556
     * Handles (rare) calls of indexOf with a supplementary character.
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1557
     */
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1558
    private int indexOfSupplementary(int ch, int fromIndex) {
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1559
        if (Character.isValidCodePoint(ch)) {
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1560
            final char[] value = this.value;
5991
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5988
diff changeset
  1561
            final char hi = Character.highSurrogate(ch);
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5988
diff changeset
  1562
            final char lo = Character.lowSurrogate(ch);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1563
            final int max = value.length - 1;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1564
            for (int i = fromIndex; i < max; i++) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1565
                if (value[i] == hi && value[i + 1] == lo) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1566
                    return i;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     * Returns the index within this string of the last occurrence of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1575
     * the specified character. For values of {@code ch} in the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
     * range from 0 to 0xFFFF (inclusive), the index (in Unicode code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
     * units) returned is the largest value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
     * this.charAt(<i>k</i>) == ch
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
     * </pre></blockquote>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1581
     * is true. For other values of {@code ch}, it is the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
     * largest value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
     * this.codePointAt(<i>k</i>) == ch
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
     * is true.  In either case, if no such character occurs in this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1587
     * string, then {@code -1} is returned.  The
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1588
     * {@code String} is searched backwards starting at the last
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     * character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     * @param   ch   a character (Unicode code point).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     * @return  the index of the last occurrence of the character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
     *          character sequence represented by this object, or
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1594
     *          {@code -1} if the character does not occur.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
    public int lastIndexOf(int ch) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1597
        return lastIndexOf(ch, value.length - 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
     * Returns the index within this string of the last occurrence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     * the specified character, searching backward starting at the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1603
     * specified index. For values of {@code ch} in the range
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     * from 0 to 0xFFFF (inclusive), the index returned is the largest
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
     * value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
     * (this.charAt(<i>k</i>) == ch) && (<i>k</i> &lt;= fromIndex)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
     * </pre></blockquote>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1609
     * is true. For other values of {@code ch}, it is the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
     * largest value <i>k</i> such that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
     * (this.codePointAt(<i>k</i>) == ch) && (<i>k</i> &lt;= fromIndex)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
     * is true. In either case, if no such character occurs in this
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1615
     * string at or before position {@code fromIndex}, then
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1616
     * {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1618
     * <p>All indices are specified in {@code char} values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
     * (Unicode code units).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
     * @param   ch          a character (Unicode code point).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
     * @param   fromIndex   the index to start the search from. There is no
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1623
     *          restriction on the value of {@code fromIndex}. If it is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
     *          greater than or equal to the length of this string, it has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     *          the same effect as if it were equal to one less than the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     *          length of this string: this entire string may be searched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
     *          If it is negative, it has the same effect as if it were -1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     *          -1 is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
     * @return  the index of the last occurrence of the character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
     *          character sequence represented by this object that is less
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1631
     *          than or equal to {@code fromIndex}, or {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
     *          if the character does not occur before that point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
    public int lastIndexOf(int ch, int fromIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
        if (ch < Character.MIN_SUPPLEMENTARY_CODE_POINT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
            // handle most cases here (ch is a BMP code point or a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
            // negative value (invalid code point))
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1638
            final char[] value = this.value;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1639
            int i = Math.min(fromIndex, value.length - 1);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1640
            for (; i >= 0; i--) {
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1641
                if (value[i] == ch) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1642
                    return i;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
            return -1;
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1646
        } else {
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1647
            return lastIndexOfSupplementary(ch, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
        }
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1649
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
5987
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1651
    /**
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1652
     * Handles (rare) calls of lastIndexOf with a supplementary character.
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1653
     */
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1654
    private int lastIndexOfSupplementary(int ch, int fromIndex) {
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1655
        if (Character.isValidCodePoint(ch)) {
caec61968454 6937112: String.lastIndexOf confused by unpaired trailing surrogate
martin
parents: 5986
diff changeset
  1656
            final char[] value = this.value;
5991
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5988
diff changeset
  1657
            char hi = Character.highSurrogate(ch);
288afdbbca28 6933322: Add methods highSurrogate(), lowSurrogate() to class Character
martin
parents: 5988
diff changeset
  1658
            char lo = Character.lowSurrogate(ch);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1659
            int i = Math.min(fromIndex, value.length - 2);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1660
            for (; i >= 0; i--) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1661
                if (value[i] == hi && value[i + 1] == lo) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1662
                    return i;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     * Returns the index within this string of the first occurrence of the
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1671
     * specified substring.
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1672
     *
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1673
     * <p>The returned index is the smallest value <i>k</i> for which:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
     * this.startsWith(str, <i>k</i>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
     * </pre></blockquote>
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1677
     * If no such value of <i>k</i> exists, then {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
     *
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1679
     * @param   str   the substring to search for.
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1680
     * @return  the index of the first occurrence of the specified substring,
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1681
     *          or {@code -1} if there is no such occurrence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
    public int indexOf(String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
        return indexOf(str, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     * Returns the index within this string of the first occurrence of the
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1689
     * specified substring, starting at the specified index.
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1690
     *
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1691
     * <p>The returned index is the smallest value <i>k</i> for which:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
     * <blockquote><pre>
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1693
     * <i>k</i> &gt;= fromIndex && this.startsWith(str, <i>k</i>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
     * </pre></blockquote>
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1695
     * If no such value of <i>k</i> exists, then {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
     *
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1697
     * @param   str         the substring to search for.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
     * @param   fromIndex   the index from which to start the search.
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1699
     * @return  the index of the first occurrence of the specified substring,
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1700
     *          starting at the specified index,
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1701
     *          or {@code -1} if there is no such occurrence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
    public int indexOf(String str, int fromIndex) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1704
        return indexOf(value, 0, value.length,
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1705
                str.value, 0, str.value.length, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
     * Code shared by String and StringBuffer to do searches. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
     * source is the character array being searched, and the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
     * is the string being searched for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
     * @param   source       the characters being searched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
     * @param   sourceOffset offset of the source string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
     * @param   sourceCount  count of the source string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
     * @param   target       the characters being searched for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
     * @param   targetOffset offset of the target string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
     * @param   targetCount  count of the target string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
     * @param   fromIndex    the index to begin searching from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
    static int indexOf(char[] source, int sourceOffset, int sourceCount,
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1722
            char[] target, int targetOffset, int targetCount,
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1723
            int fromIndex) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
        if (fromIndex >= sourceCount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
            return (targetCount == 0 ? sourceCount : -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
        if (fromIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
            fromIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
        if (targetCount == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
            return fromIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1734
        char first = target[targetOffset];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
        int max = sourceOffset + (sourceCount - targetCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
        for (int i = sourceOffset + fromIndex; i <= max; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
            /* Look for first character. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
            if (source[i] != first) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
                while (++i <= max && source[i] != first);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
            /* Found first character, now look at the rest of v2 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
            if (i <= max) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
                int j = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
                int end = j + targetCount - 1;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1747
                for (int k = targetOffset + 1; j < end && source[j]
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1748
                        == target[k]; j++, k++);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
                if (j == end) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
                    /* Found whole string. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
                    return i - sourceOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
    /**
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1760
     * Returns the index within this string of the last occurrence of the
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1761
     * specified substring.  The last occurrence of the empty string ""
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1762
     * is considered to occur at the index value {@code this.length()}.
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1763
     *
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1764
     * <p>The returned index is the largest value <i>k</i> for which:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
     * <blockquote><pre>
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1766
     * this.startsWith(str, <i>k</i>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
     * </pre></blockquote>
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1768
     * If no such value of <i>k</i> exists, then {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
     * @param   str   the substring to search for.
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1771
     * @return  the index of the last occurrence of the specified substring,
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1772
     *          or {@code -1} if there is no such occurrence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
    public int lastIndexOf(String str) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1775
        return lastIndexOf(str, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
     * Returns the index within this string of the last occurrence of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
     * specified substring, searching backward starting at the specified index.
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1781
     *
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1782
     * <p>The returned index is the largest value <i>k</i> for which:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
     * <blockquote><pre>
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1784
     * <i>k</i> &lt;= fromIndex && this.startsWith(str, <i>k</i>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
     * </pre></blockquote>
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1786
     * If no such value of <i>k</i> exists, then {@code -1} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
     * @param   str         the substring to search for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
     * @param   fromIndex   the index to start the search from.
5988
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1790
     * @return  the index of the last occurrence of the specified substring,
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1791
     *          searching backward from the specified index,
2c984724db38 6940381: Wording improvements for String.indexOf, String.lastIndexOf
martin
parents: 5987
diff changeset
  1792
     *          or {@code -1} if there is no such occurrence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
    public int lastIndexOf(String str, int fromIndex) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1795
        return lastIndexOf(value, 0, value.length,
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1796
                str.value, 0, str.value.length, fromIndex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
     * Code shared by String and StringBuffer to do searches. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
     * source is the character array being searched, and the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
     * is the string being searched for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
     * @param   source       the characters being searched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
     * @param   sourceOffset offset of the source string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
     * @param   sourceCount  count of the source string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
     * @param   target       the characters being searched for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
     * @param   targetOffset offset of the target string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
     * @param   targetCount  count of the target string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
     * @param   fromIndex    the index to begin searching from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
    static int lastIndexOf(char[] source, int sourceOffset, int sourceCount,
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1813
            char[] target, int targetOffset, int targetCount,
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1814
            int fromIndex) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
         * Check arguments; return immediately where possible. For
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
         * consistency, don't check for null str.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
        int rightIndex = sourceCount - targetCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
        if (fromIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
        if (fromIndex > rightIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
            fromIndex = rightIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
        /* Empty string always matches. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
        if (targetCount == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
            return fromIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
        int strLastIndex = targetOffset + targetCount - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
        char strLastChar = target[strLastIndex];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
        int min = sourceOffset + targetCount - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
        int i = min + fromIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1836
        startSearchForLastChar:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
            while (i >= min && source[i] != strLastChar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
                i--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
            if (i < min) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
            int j = i - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
            int start = j - (targetCount - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
            int k = strLastIndex - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
            while (j > start) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
                if (source[j--] != target[k--]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
                    i--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
                    continue startSearchForLastChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
            return start - sourceOffset + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
     * Returns a new string that is a substring of this string. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
     * substring begins with the character at the specified index and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
     * extends to the end of this string. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
     * Examples:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
     * "unhappy".substring(2) returns "happy"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
     * "Harbison".substring(3) returns "bison"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
     * "emptiness".substring(9) returns "" (an empty string)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
     * @param      beginIndex   the beginning index, inclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
     * @return     the specified substring.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
     * @exception  IndexOutOfBoundsException  if
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1872
     *             {@code beginIndex} is negative or larger than the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1873
     *             length of this {@code String} object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
    public String substring(int beginIndex) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1876
        if (beginIndex < 0) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1877
            throw new StringIndexOutOfBoundsException(beginIndex);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1878
        }
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1879
        int subLen = value.length - beginIndex;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1880
        if (subLen < 0) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1881
            throw new StringIndexOutOfBoundsException(subLen);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1882
        }
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1883
        return (beginIndex == 0) ? this : new String(value, beginIndex, subLen);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
     * Returns a new string that is a substring of this string. The
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1888
     * substring begins at the specified {@code beginIndex} and
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1889
     * extends to the character at index {@code endIndex - 1}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1890
     * Thus the length of the substring is {@code endIndex-beginIndex}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
     * Examples:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
     * "hamburger".substring(4, 8) returns "urge"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
     * "smiles".substring(1, 5) returns "mile"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
     * @param      beginIndex   the beginning index, inclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
     * @param      endIndex     the ending index, exclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
     * @return     the specified substring.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
     * @exception  IndexOutOfBoundsException  if the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1902
     *             {@code beginIndex} is negative, or
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1903
     *             {@code endIndex} is larger than the length of
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1904
     *             this {@code String} object, or
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1905
     *             {@code beginIndex} is larger than
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1906
     *             {@code endIndex}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
    public String substring(int beginIndex, int endIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
        if (beginIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
            throw new StringIndexOutOfBoundsException(beginIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1912
        if (endIndex > value.length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
            throw new StringIndexOutOfBoundsException(endIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1915
        int subLen = endIndex - beginIndex;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1916
        if (subLen < 0) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1917
            throw new StringIndexOutOfBoundsException(subLen);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1919
        return ((beginIndex == 0) && (endIndex == value.length)) ? this
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1920
                : new String(value, beginIndex, subLen);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
     * Returns a new character sequence that is a subsequence of this sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
     * str.subSequence(begin,&nbsp;end)</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
     * str.substring(begin,&nbsp;end)</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
     *
13156
e88d9099b6f0 7170938: (str) incorrect wording in doc for String.subSequence
smarks
parents: 12859
diff changeset
  1936
     * This method is defined so that the {@code String} class can implement
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
     * the {@link CharSequence} interface. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
     *
13156
e88d9099b6f0 7170938: (str) incorrect wording in doc for String.subSequence
smarks
parents: 12859
diff changeset
  1939
     * @param   beginIndex   the begin index, inclusive.
e88d9099b6f0 7170938: (str) incorrect wording in doc for String.subSequence
smarks
parents: 12859
diff changeset
  1940
     * @param   endIndex     the end index, exclusive.
e88d9099b6f0 7170938: (str) incorrect wording in doc for String.subSequence
smarks
parents: 12859
diff changeset
  1941
     * @return  the specified subsequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
     * @throws  IndexOutOfBoundsException
13156
e88d9099b6f0 7170938: (str) incorrect wording in doc for String.subSequence
smarks
parents: 12859
diff changeset
  1944
     *          if {@code beginIndex} or {@code endIndex} is negative,
e88d9099b6f0 7170938: (str) incorrect wording in doc for String.subSequence
smarks
parents: 12859
diff changeset
  1945
     *          if {@code endIndex} is greater than {@code length()},
e88d9099b6f0 7170938: (str) incorrect wording in doc for String.subSequence
smarks
parents: 12859
diff changeset
  1946
     *          or if {@code beginIndex} is greater than {@code endIndex}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
    public CharSequence subSequence(int beginIndex, int endIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
        return this.substring(beginIndex, endIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
     * Concatenates the specified string to the end of this string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1958
     * If the length of the argument string is {@code 0}, then this
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1959
     * {@code String} object is returned. Otherwise, a new
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1960
     * {@code String} object is created, representing a character
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
     * sequence that is the concatenation of the character sequence
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1962
     * represented by this {@code String} object and the character
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
     * sequence represented by the argument string.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
     * Examples:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
     * "cares".concat("s") returns "caress"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
     * "to".concat("get").concat("her") returns "together"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1970
     * @param   str   the {@code String} that is concatenated to the end
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1971
     *                of this {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
     * @return  a string that represents the concatenation of this object's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
     *          characters followed by the string argument's characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
    public String concat(String str) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
        int otherLen = str.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
        if (otherLen == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
            return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1980
        int len = value.length;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1981
        char buf[] = Arrays.copyOf(value, len + otherLen);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1982
        str.getChars(buf, len);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  1983
        return new String(buf, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
     * Returns a new string resulting from replacing all occurrences of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1988
     * {@code oldChar} in this string with {@code newChar}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1990
     * If the character {@code oldChar} does not occur in the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1991
     * character sequence represented by this {@code String} object,
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1992
     * then a reference to this {@code String} object is returned.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1993
     * Otherwise, a new {@code String} object is created that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
     * represents a character sequence identical to the character sequence
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1995
     * represented by this {@code String} object, except that every
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1996
     * occurrence of {@code oldChar} is replaced by an occurrence
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  1997
     * of {@code newChar}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
     * Examples:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
     * "mesquite in your cellar".replace('e', 'o')
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
     *         returns "mosquito in your collar"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     * "the war of baronets".replace('r', 'y')
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
     *         returns "the way of bayonets"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
     * "sparring with a purple porpoise".replace('p', 't')
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
     *         returns "starring with a turtle tortoise"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
     * "JonL".replace('q', 'x') returns "JonL" (no change)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
     * @param   oldChar   the old character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
     * @param   newChar   the new character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
     * @return  a string derived from this string by replacing every
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2013
     *          occurrence of {@code oldChar} with {@code newChar}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
    public String replace(char oldChar, char newChar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
        if (oldChar != newChar) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2017
            int len = value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
            int i = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
            char[] val = value; /* avoid getfield opcode */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
            while (++i < len) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2022
                if (val[i] == oldChar) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
            if (i < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
                char buf[] = new char[len];
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2028
                for (int j = 0; j < i; j++) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2029
                    buf[j] = val[j];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
                while (i < len) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2032
                    char c = val[i];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
                    buf[i] = (c == oldChar) ? newChar : c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
                    i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
                }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2036
                return new String(buf, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
     * Tells whether or not this string matches the given <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
     * href="../util/regex/Pattern.html#sum">regular expression</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
     * <i>str</i><tt>.matches(</tt><i>regex</i><tt>)</tt> yields exactly the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
     * same result as the expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
     * <blockquote><tt> {@link java.util.regex.Pattern}.{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
     * java.util.regex.Pattern#matches(String,CharSequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
     * matches}(</tt><i>regex</i><tt>,</tt> <i>str</i><tt>)</tt></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
     * @param   regex
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
     *          the regular expression to which this string is to be matched
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
     * @return  <tt>true</tt> if, and only if, this string matches the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
     *          given regular expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
     * @throws  PatternSyntaxException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
     *          if the regular expression's syntax is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
     * @see java.util.regex.Pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
    public boolean matches(String regex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
        return Pattern.matches(regex, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
     * Returns true if and only if this string contains the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
     * sequence of char values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
     * @param s the sequence to search for
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2077
     * @return true if this string contains {@code s}, false otherwise
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2078
     * @throws NullPointerException if {@code s} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
    public boolean contains(CharSequence s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
        return indexOf(s.toString()) > -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
     * Replaces the first substring of this string that matches the given <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
     * href="../util/regex/Pattern.html#sum">regular expression</a> with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
     * given replacement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
     * <i>str</i><tt>.replaceFirst(</tt><i>regex</i><tt>,</tt> <i>repl</i><tt>)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
     * yields exactly the same result as the expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
     * <blockquote><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
     * {@link java.util.regex.Pattern}.{@link java.util.regex.Pattern#compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
     * compile}(</tt><i>regex</i><tt>).{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
     * java.util.regex.Pattern#matcher(java.lang.CharSequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
     * matcher}(</tt><i>str</i><tt>).{@link java.util.regex.Matcher#replaceFirst
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
     * replaceFirst}(</tt><i>repl</i><tt>)</tt></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
     *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
     * Note that backslashes (<tt>\</tt>) and dollar signs (<tt>$</tt>) in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
     * replacement string may cause the results to be different than if it were
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
     * being treated as a literal replacement string; see
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
     * {@link java.util.regex.Matcher#replaceFirst}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
     * Use {@link java.util.regex.Matcher#quoteReplacement} to suppress the special
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
     * meaning of these characters, if desired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
     * @param   regex
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
     *          the regular expression to which this string is to be matched
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
     * @param   replacement
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
     *          the string to be substituted for the first match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
     * @return  The resulting <tt>String</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
     * @throws  PatternSyntaxException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
     *          if the regular expression's syntax is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
     * @see java.util.regex.Pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
    public String replaceFirst(String regex, String replacement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2125
        return Pattern.compile(regex).matcher(this).replaceFirst(replacement);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
     * Replaces each substring of this string that matches the given <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
     * href="../util/regex/Pattern.html#sum">regular expression</a> with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
     * given replacement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
     * <i>str</i><tt>.replaceAll(</tt><i>regex</i><tt>,</tt> <i>repl</i><tt>)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
     * yields exactly the same result as the expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
     * <blockquote><tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
     * {@link java.util.regex.Pattern}.{@link java.util.regex.Pattern#compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
     * compile}(</tt><i>regex</i><tt>).{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
     * java.util.regex.Pattern#matcher(java.lang.CharSequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
     * matcher}(</tt><i>str</i><tt>).{@link java.util.regex.Matcher#replaceAll
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
     * replaceAll}(</tt><i>repl</i><tt>)</tt></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
     *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
     * Note that backslashes (<tt>\</tt>) and dollar signs (<tt>$</tt>) in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
     * replacement string may cause the results to be different than if it were
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
     * being treated as a literal replacement string; see
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
     * {@link java.util.regex.Matcher#replaceAll Matcher.replaceAll}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
     * Use {@link java.util.regex.Matcher#quoteReplacement} to suppress the special
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
     * meaning of these characters, if desired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
     * @param   regex
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
     *          the regular expression to which this string is to be matched
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
     * @param   replacement
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
     *          the string to be substituted for each match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
     * @return  The resulting <tt>String</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
     * @throws  PatternSyntaxException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
     *          if the regular expression's syntax is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
     * @see java.util.regex.Pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
    public String replaceAll(String regex, String replacement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
        return Pattern.compile(regex).matcher(this).replaceAll(replacement);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
     * Replaces each substring of this string that matches the literal target
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
     * sequence with the specified literal replacement sequence. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
     * replacement proceeds from the beginning of the string to the end, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
     * example, replacing "aa" with "b" in the string "aaa" will result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
     * "ba" rather than "ab".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
     * @param  target The sequence of char values to be replaced
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
     * @param  replacement The replacement sequence of char values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
     * @return  The resulting string
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2181
     * @throws NullPointerException if {@code target} or
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2182
     *         {@code replacement} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
    public String replace(CharSequence target, CharSequence replacement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
        return Pattern.compile(target.toString(), Pattern.LITERAL).matcher(
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2187
                this).replaceAll(Matcher.quoteReplacement(replacement.toString()));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
     * Splits this string around matches of the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
     * <a href="../util/regex/Pattern.html#sum">regular expression</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
     * <p> The array returned by this method contains each substring of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
     * string that is terminated by another substring that matches the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
     * expression or is terminated by the end of the string.  The substrings in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
     * the array are in the order in which they occur in this string.  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2198
     * expression does not match any part of the input then the resulting array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2199
     * has just one element, namely this string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
     * <p> The <tt>limit</tt> parameter controls the number of times the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2202
     * pattern is applied and therefore affects the length of the resulting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2203
     * array.  If the limit <i>n</i> is greater than zero then the pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
     * will be applied at most <i>n</i>&nbsp;-&nbsp;1 times, the array's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2205
     * length will be no greater than <i>n</i>, and the array's last entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2206
     * will contain all input beyond the last matched delimiter.  If <i>n</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
     * is non-positive then the pattern will be applied as many times as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
     * possible and the array can have any length.  If <i>n</i> is zero then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2209
     * the pattern will be applied as many times as possible, the array can
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2210
     * have any length, and trailing empty strings will be discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2212
     * <p> The string <tt>"boo:and:foo"</tt>, for example, yields the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2213
     * following results with these parameters:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2215
     * <blockquote><table cellpadding=1 cellspacing=0 summary="Split example showing regex, limit, and result">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2216
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
     *     <th>Regex</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2218
     *     <th>Limit</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2219
     *     <th>Result</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2220
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
     * <tr><td align=center>:</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
     *     <td align=center>2</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
     *     <td><tt>{ "boo", "and:foo" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2224
     * <tr><td align=center>:</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
     *     <td align=center>5</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2226
     *     <td><tt>{ "boo", "and", "foo" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
     * <tr><td align=center>:</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2228
     *     <td align=center>-2</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
     *     <td><tt>{ "boo", "and", "foo" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
     * <tr><td align=center>o</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2231
     *     <td align=center>5</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
     *     <td><tt>{ "b", "", ":and:f", "", "" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
     * <tr><td align=center>o</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
     *     <td align=center>-2</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2235
     *     <td><tt>{ "b", "", ":and:f", "", "" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
     * <tr><td align=center>o</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2237
     *     <td align=center>0</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
     *     <td><tt>{ "b", "", ":and:f" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
     * </table></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2242
     * <i>str.</i><tt>split(</tt><i>regex</i><tt>,</tt>&nbsp;<i>n</i><tt>)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
     * yields the same result as the expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2244
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2245
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
     * {@link java.util.regex.Pattern}.{@link java.util.regex.Pattern#compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
     * compile}<tt>(</tt><i>regex</i><tt>)</tt>.{@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
     * java.util.regex.Pattern#split(java.lang.CharSequence,int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2249
     * split}<tt>(</tt><i>str</i><tt>,</tt>&nbsp;<i>n</i><tt>)</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
     * @param  regex
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
     *         the delimiting regular expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
     * @param  limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
     *         the result threshold, as described above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
     * @return  the array of strings computed by splitting this string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
     *          around matches of the given regular expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
     * @throws  PatternSyntaxException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
     *          if the regular expression's syntax is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2265
     * @see java.util.regex.Pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2266
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2267
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2268
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
    public String[] split(String regex, int limit) {
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2271
        /* fastpath if the regex is a
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2272
         (1)one-char String and this character is not one of the
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2273
            RegEx's meta characters ".$|()[{^?*+\\", or
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2274
         (2)two-char String and the first char is the backslash and
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2275
            the second is not the ascii digit or ascii letter.
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2276
         */
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2277
        char ch = 0;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2278
        if (((regex.value.length == 1 &&
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2279
             ".$|()[{^?*+\\".indexOf(ch = regex.charAt(0)) == -1) ||
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2280
             (regex.length() == 2 &&
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2281
              regex.charAt(0) == '\\' &&
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2282
              (((ch = regex.charAt(1))-'0')|('9'-ch)) < 0 &&
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2283
              ((ch-'a')|('z'-ch)) < 0 &&
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2284
              ((ch-'A')|('Z'-ch)) < 0)) &&
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2285
            (ch < Character.MIN_HIGH_SURROGATE ||
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2286
             ch > Character.MAX_LOW_SURROGATE))
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2287
        {
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2288
            int off = 0;
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2289
            int next = 0;
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2290
            boolean limited = limit > 0;
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5991
diff changeset
  2291
            ArrayList<String> list = new ArrayList<>();
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2292
            while ((next = indexOf(ch, off)) != -1) {
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2293
                if (!limited || list.size() < limit - 1) {
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2294
                    list.add(substring(off, next));
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2295
                    off = next + 1;
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2296
                } else {    // last one
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2297
                    //assert (list.size() == limit - 1);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2298
                    list.add(substring(off, value.length));
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2299
                    off = value.length;
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2300
                    break;
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2301
                }
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2302
            }
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2303
            // If no match was found, return this
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2304
            if (off == 0)
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2305
                return new String[]{this};
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2306
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2307
            // Add remaining segment
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2308
            if (!limited || list.size() < limit)
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2309
                list.add(substring(off, value.length));
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2310
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2311
            // Construct result
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2312
            int resultSize = list.size();
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2313
            if (limit == 0)
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2314
                while (resultSize > 0 && list.get(resultSize - 1).length() == 0)
3617
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2315
                    resultSize--;
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2316
            String[] result = new String[resultSize];
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2317
            return list.subList(0, resultSize).toArray(result);
422105639b62 6840246: Lightweight implementation of String.split for simple use case
sherman
parents: 2497
diff changeset
  2318
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
        return Pattern.compile(regex).split(this, limit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
     * Splits this string around matches of the given <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
     * href="../util/regex/Pattern.html#sum">regular expression</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2326
     * <p> This method works as if by invoking the two-argument {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2327
     * #split(String, int) split} method with the given expression and a limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2328
     * argument of zero.  Trailing empty strings are therefore not included in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2329
     * the resulting array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2331
     * <p> The string <tt>"boo:and:foo"</tt>, for example, yields the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
     * results with these expressions:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
     * <blockquote><table cellpadding=1 cellspacing=0 summary="Split examples showing regex and result">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
     *  <th>Regex</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
     *  <th>Result</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
     * <tr><td align=center>:</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
     *     <td><tt>{ "boo", "and", "foo" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
     * <tr><td align=center>o</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
     *     <td><tt>{ "b", "", ":and:f" }</tt></td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
     * </table></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
     * @param  regex
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
     *         the delimiting regular expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
     * @return  the array of strings computed by splitting this string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
     *          around matches of the given regular expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
     * @throws  PatternSyntaxException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
     *          if the regular expression's syntax is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
     * @see java.util.regex.Pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
    public String[] split(String regex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
        return split(regex, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2365
     * Converts all of the characters in this {@code String} to lower
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2366
     * case using the rules of the given {@code Locale}.  Case mapping is based
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
     * on the Unicode Standard version specified by the {@link java.lang.Character Character}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
     * class. Since case mappings are not always 1:1 char mappings, the resulting
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2369
     * {@code String} may be a different length than the original {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2370
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
     * Examples of lowercase  mappings are in the following table:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2372
     * <table border="1" summary="Lowercase mapping examples showing language code of locale, upper case, lower case, and description">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
     *   <th>Language Code of Locale</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
     *   <th>Upper Case</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
     *   <th>Lower Case</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
     *   <th>Description</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2379
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
     *   <td>tr (Turkish)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2381
     *   <td>&#92;u0130</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
     *   <td>&#92;u0069</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2383
     *   <td>capital letter I with dot above -&gt; small letter i</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2384
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2385
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2386
     *   <td>tr (Turkish)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
     *   <td>&#92;u0049</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2388
     *   <td>&#92;u0131</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2389
     *   <td>capital letter I -&gt; small letter dotless i </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2390
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
     *   <td>(all)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
     *   <td>French Fries</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
     *   <td>french fries</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2395
     *   <td>lowercased all chars in String</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2398
     *   <td>(all)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
     *   <td><img src="doc-files/capiota.gif" alt="capiota"><img src="doc-files/capchi.gif" alt="capchi">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
     *       <img src="doc-files/captheta.gif" alt="captheta"><img src="doc-files/capupsil.gif" alt="capupsil">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
     *       <img src="doc-files/capsigma.gif" alt="capsigma"></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
     *   <td><img src="doc-files/iota.gif" alt="iota"><img src="doc-files/chi.gif" alt="chi">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
     *       <img src="doc-files/theta.gif" alt="theta"><img src="doc-files/upsilon.gif" alt="upsilon">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
     *       <img src="doc-files/sigma1.gif" alt="sigma"></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
     *   <td>lowercased all chars in String</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
     * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
     * @param locale use the case transformation rules for this locale
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2410
     * @return the {@code String}, converted to lowercase.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
     * @see     java.lang.String#toLowerCase()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
     * @see     java.lang.String#toUpperCase()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2413
     * @see     java.lang.String#toUpperCase(Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
    public String toLowerCase(Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
        if (locale == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2421
        int firstUpper;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2422
        final int len = value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2423
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2424
        /* Now check if there are any characters that need to be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2425
        scan: {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2426
            for (firstUpper = 0 ; firstUpper < len; ) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2427
                char c = value[firstUpper];
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2428
                if ((c >= Character.MIN_HIGH_SURROGATE)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2429
                        && (c <= Character.MAX_HIGH_SURROGATE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2430
                    int supplChar = codePointAt(firstUpper);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
                    if (supplChar != Character.toLowerCase(supplChar)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2432
                        break scan;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2434
                    firstUpper += Character.charCount(supplChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2435
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
                    if (c != Character.toLowerCase(c)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
                        break scan;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2438
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
                    firstUpper++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2441
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2442
            return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2443
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2445
        char[] result = new char[len];
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2446
        int resultOffset = 0;  /* result may grow, so i+resultOffset
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2447
                                * is the write location in result */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
        /* Just copy the first few lowerCase characters. */
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2450
        System.arraycopy(value, 0, result, 0, firstUpper);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2451
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2452
        String lang = locale.getLanguage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2453
        boolean localeDependent =
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2454
                (lang == "tr" || lang == "az" || lang == "lt");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2455
        char[] lowerCharArray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2456
        int lowerChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
        int srcChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2458
        int srcCount;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2459
        for (int i = firstUpper; i < len; i += srcCount) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2460
            srcChar = (int)value[i];
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2461
            if ((char)srcChar >= Character.MIN_HIGH_SURROGATE
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2462
                    && (char)srcChar <= Character.MAX_HIGH_SURROGATE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2463
                srcChar = codePointAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2464
                srcCount = Character.charCount(srcChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2465
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2466
                srcCount = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
            if (localeDependent || srcChar == '\u03A3') { // GREEK CAPITAL LETTER SIGMA
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2469
                lowerChar = ConditionalSpecialCasing.toLowerCaseEx(this, i, locale);
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2470
            } else if (srcChar == '\u0130') { // LATIN CAPITAL LETTER I DOT
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2471
                lowerChar = Character.ERROR;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2473
                lowerChar = Character.toLowerCase(srcChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
            }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2475
            if ((lowerChar == Character.ERROR)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2476
                    || (lowerChar >= Character.MIN_SUPPLEMENTARY_CODE_POINT)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
                if (lowerChar == Character.ERROR) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2478
                    if (!localeDependent && srcChar == '\u0130') {
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
  2479
                        lowerCharArray =
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2480
                                ConditionalSpecialCasing.toLowerCaseCharArray(this, i, Locale.ENGLISH);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2481
                    } else {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2482
                        lowerCharArray =
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2483
                                ConditionalSpecialCasing.toLowerCaseCharArray(this, i, locale);
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2484
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
                } else if (srcCount == 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
                    resultOffset += Character.toChars(lowerChar, result, i + resultOffset) - srcCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
                    lowerCharArray = Character.toChars(lowerChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2492
                /* Grow result if needed */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
                int mapLen = lowerCharArray.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
                if (mapLen > srcCount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
                    char[] result2 = new char[result.length + mapLen - srcCount];
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2496
                    System.arraycopy(result, 0, result2, 0, i + resultOffset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
                    result = result2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2498
                }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2499
                for (int x = 0; x < mapLen; ++x) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2500
                    result[i + resultOffset + x] = lowerCharArray[x];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2501
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2502
                resultOffset += (mapLen - srcCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
            } else {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2504
                result[i + resultOffset] = (char)lowerChar;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2505
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2506
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2507
        return new String(result, 0, len + resultOffset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2508
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2509
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2510
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2511
     * Converts all of the characters in this {@code String} to lower
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2512
     * case using the rules of the default locale. This is equivalent to calling
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2513
     * {@code toLowerCase(Locale.getDefault())}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
     * <b>Note:</b> This method is locale sensitive, and may produce unexpected
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2516
     * results if used for strings that are intended to be interpreted locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2517
     * independently.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
     * Examples are programming language identifiers, protocol keys, and HTML
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2519
     * tags.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2520
     * For instance, {@code "TITLE".toLowerCase()} in a Turkish locale
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2521
     * returns {@code "t\u005Cu0131tle"}, where '\u005Cu0131' is the
5469
18ea05ea56b9 6937842: Unreadable \uXXXX in javadoc
martin
parents: 4982
diff changeset
  2522
     * LATIN SMALL LETTER DOTLESS I character.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2523
     * To obtain correct results for locale insensitive strings, use
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2524
     * {@code toLowerCase(Locale.ENGLISH)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2525
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2526
     * @return  the {@code String}, converted to lowercase.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2527
     * @see     java.lang.String#toLowerCase(Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2528
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2529
    public String toLowerCase() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2530
        return toLowerCase(Locale.getDefault());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2533
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2534
     * Converts all of the characters in this {@code String} to upper
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2535
     * case using the rules of the given {@code Locale}. Case mapping is based
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2536
     * on the Unicode Standard version specified by the {@link java.lang.Character Character}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2537
     * class. Since case mappings are not always 1:1 char mappings, the resulting
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2538
     * {@code String} may be a different length than the original {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
     * Examples of locale-sensitive and 1:M case mappings are in the following table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2542
     * <table border="1" summary="Examples of locale-sensitive and 1:M case mappings. Shows Language code of locale, lower case, upper case, and description.">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2543
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2544
     *   <th>Language Code of Locale</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
     *   <th>Lower Case</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2546
     *   <th>Upper Case</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2547
     *   <th>Description</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2549
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
     *   <td>tr (Turkish)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
     *   <td>&#92;u0069</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2552
     *   <td>&#92;u0130</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2553
     *   <td>small letter i -&gt; capital letter I with dot above</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2556
     *   <td>tr (Turkish)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2557
     *   <td>&#92;u0131</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2558
     *   <td>&#92;u0049</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2559
     *   <td>small letter dotless i -&gt; capital letter I</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2560
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2561
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2562
     *   <td>(all)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
     *   <td>&#92;u00df</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
     *   <td>&#92;u0053 &#92;u0053</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
     *   <td>small letter sharp s -&gt; two letters: SS</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
     * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
     *   <td>(all)</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
     *   <td>Fahrvergn&uuml;gen</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
     *   <td>FAHRVERGN&Uuml;GEN</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
     *   <td></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
     * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
     * @param locale use the case transformation rules for this locale
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2575
     * @return the {@code String}, converted to uppercase.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
     * @see     java.lang.String#toUpperCase()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
     * @see     java.lang.String#toLowerCase()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
     * @see     java.lang.String#toLowerCase(Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
     * @since   1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
    public String toUpperCase(Locale locale) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
        if (locale == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2586
        int firstLower;
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2587
        final int len = value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2589
        /* Now check if there are any characters that need to be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2590
        scan: {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2591
            for (firstLower = 0 ; firstLower < len; ) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2592
                int c = (int)value[firstLower];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2593
                int srcCount;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2594
                if ((c >= Character.MIN_HIGH_SURROGATE)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2595
                        && (c <= Character.MAX_HIGH_SURROGATE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
                    c = codePointAt(firstLower);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
                    srcCount = Character.charCount(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
                    srcCount = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
                int upperCaseChar = Character.toUpperCaseEx(c);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2602
                if ((upperCaseChar == Character.ERROR)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2603
                        || (c != upperCaseChar)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
                    break scan;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2606
                firstLower += srcCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2608
            return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2609
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2610
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2611
        char[] result = new char[len]; /* may grow */
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2612
        int resultOffset = 0;  /* result may grow, so i+resultOffset
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2613
         * is the write location in result */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2614
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2615
        /* Just copy the first few upperCase characters. */
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2616
        System.arraycopy(value, 0, result, 0, firstLower);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2617
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2618
        String lang = locale.getLanguage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2619
        boolean localeDependent =
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2620
                (lang == "tr" || lang == "az" || lang == "lt");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2621
        char[] upperCharArray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2622
        int upperChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2623
        int srcChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2624
        int srcCount;
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2625
        for (int i = firstLower; i < len; i += srcCount) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2626
            srcChar = (int)value[i];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2627
            if ((char)srcChar >= Character.MIN_HIGH_SURROGATE &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2628
                (char)srcChar <= Character.MAX_HIGH_SURROGATE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2629
                srcChar = codePointAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2630
                srcCount = Character.charCount(srcChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2631
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2632
                srcCount = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2633
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2634
            if (localeDependent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2635
                upperChar = ConditionalSpecialCasing.toUpperCaseEx(this, i, locale);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2636
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2637
                upperChar = Character.toUpperCaseEx(srcChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2638
            }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2639
            if ((upperChar == Character.ERROR)
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2640
                    || (upperChar >= Character.MIN_SUPPLEMENTARY_CODE_POINT)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2641
                if (upperChar == Character.ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2642
                    if (localeDependent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2643
                        upperCharArray =
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2644
                                ConditionalSpecialCasing.toUpperCaseCharArray(this, i, locale);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2645
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2646
                        upperCharArray = Character.toUpperCaseCharArray(srcChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2647
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2648
                } else if (srcCount == 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2649
                    resultOffset += Character.toChars(upperChar, result, i + resultOffset) - srcCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2650
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2651
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2652
                    upperCharArray = Character.toChars(upperChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2653
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2654
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2655
                /* Grow result if needed */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2656
                int mapLen = upperCharArray.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2657
                if (mapLen > srcCount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2658
                    char[] result2 = new char[result.length + mapLen - srcCount];
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2659
                    System.arraycopy(result, 0, result2, 0, i + resultOffset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2660
                    result = result2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2661
                }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2662
                for (int x = 0; x < mapLen; ++x) {
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2663
                    result[i + resultOffset + x] = upperCharArray[x];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2664
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2665
                resultOffset += (mapLen - srcCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2666
            } else {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2667
                result[i + resultOffset] = (char)upperChar;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2668
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2669
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2670
        return new String(result, 0, len + resultOffset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2671
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2672
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2673
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2674
     * Converts all of the characters in this {@code String} to upper
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2675
     * case using the rules of the default locale. This method is equivalent to
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2676
     * {@code toUpperCase(Locale.getDefault())}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2677
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2678
     * <b>Note:</b> This method is locale sensitive, and may produce unexpected
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2679
     * results if used for strings that are intended to be interpreted locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2680
     * independently.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2681
     * Examples are programming language identifiers, protocol keys, and HTML
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2682
     * tags.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2683
     * For instance, {@code "title".toUpperCase()} in a Turkish locale
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2684
     * returns {@code "T\u005Cu0130TLE"}, where '\u005Cu0130' is the
5469
18ea05ea56b9 6937842: Unreadable \uXXXX in javadoc
martin
parents: 4982
diff changeset
  2685
     * LATIN CAPITAL LETTER I WITH DOT ABOVE character.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2686
     * To obtain correct results for locale insensitive strings, use
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2687
     * {@code toUpperCase(Locale.ENGLISH)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2688
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2689
     * @return  the {@code String}, converted to uppercase.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2690
     * @see     java.lang.String#toUpperCase(Locale)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2691
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2692
    public String toUpperCase() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2693
        return toUpperCase(Locale.getDefault());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2694
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2695
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2696
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2697
     * Returns a copy of the string, with leading and trailing whitespace
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2698
     * omitted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2699
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2700
     * If this {@code String} object represents an empty character
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2701
     * sequence, or the first and last characters of character sequence
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2702
     * represented by this {@code String} object both have codes
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2703
     * greater than {@code '\u005Cu0020'} (the space character), then a
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2704
     * reference to this {@code String} object is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2705
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2706
     * Otherwise, if there is no character with a code greater than
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2707
     * {@code '\u005Cu0020'} in the string, then a new
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2708
     * {@code String} object representing an empty string is created
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2709
     * and returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2710
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2711
     * Otherwise, let <i>k</i> be the index of the first character in the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2712
     * string whose code is greater than {@code '\u005Cu0020'}, and let
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2713
     * <i>m</i> be the index of the last character in the string whose code
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2714
     * is greater than {@code '\u005Cu0020'}. A new {@code String}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2715
     * object is created, representing the substring of this string that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2716
     * begins with the character at index <i>k</i> and ends with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2717
     * character at index <i>m</i>-that is, the result of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2718
     * <code>this.substring(<i>k</i>,&nbsp;<i>m</i>+1)</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2719
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2720
     * This method may be used to trim whitespace (as defined above) from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2721
     * the beginning and end of a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2722
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2723
     * @return  A copy of this string with leading and trailing white
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2724
     *          space removed, or this string if it has no leading or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2725
     *          trailing white space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2726
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2727
    public String trim() {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2728
        int len = value.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2729
        int st = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2730
        char[] val = value;    /* avoid getfield opcode */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2731
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2732
        while ((st < len) && (val[st] <= ' ')) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2733
            st++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2734
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2735
        while ((st < len) && (val[len - 1] <= ' ')) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2736
            len--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2737
        }
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2738
        return ((st > 0) || (len < value.length)) ? substring(st, len) : this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2739
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2740
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2741
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2742
     * This object (which is already a string!) is itself returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2743
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2744
     * @return  the string itself.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2745
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2746
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2747
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2748
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2749
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2750
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2751
     * Converts this string to a new character array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2752
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2753
     * @return  a newly allocated character array whose length is the length
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2754
     *          of this string and whose contents are initialized to contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2755
     *          the character sequence represented by this string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2756
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2757
    public char[] toCharArray() {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2758
        // Cannot use Arrays.copyOf because of class initialization order issues
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2759
        char result[] = new char[value.length];
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2760
        System.arraycopy(value, 0, result, 0, value.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2761
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2762
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2763
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2764
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2765
     * Returns a formatted string using the specified format string and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2766
     * arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2767
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2768
     * <p> The locale always used is the one returned by {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2769
     * java.util.Locale#getDefault() Locale.getDefault()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2770
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2771
     * @param  format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2772
     *         A <a href="../util/Formatter.html#syntax">format string</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2773
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2774
     * @param  args
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2775
     *         Arguments referenced by the format specifiers in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2776
     *         string.  If there are more arguments than format specifiers, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2777
     *         extra arguments are ignored.  The number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2778
     *         variable and may be zero.  The maximum number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2779
     *         limited by the maximum dimension of a Java array as defined by
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7816
diff changeset
  2780
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7816
diff changeset
  2781
     *         The behaviour on a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2782
     *         <tt>null</tt> argument depends on the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2783
     *         href="../util/Formatter.html#syntax">conversion</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2784
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2785
     * @throws  IllegalFormatException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2786
     *          If a format string contains an illegal syntax, a format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2787
     *          specifier that is incompatible with the given arguments,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2788
     *          insufficient arguments given the format string, or other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2789
     *          illegal conditions.  For specification of all possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2790
     *          formatting errors, see the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2791
     *          href="../util/Formatter.html#detail">Details</a> section of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2792
     *          formatter class specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2793
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2794
     * @throws  NullPointerException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2795
     *          If the <tt>format</tt> is <tt>null</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2796
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2797
     * @return  A formatted string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2798
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2799
     * @see  java.util.Formatter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2800
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2801
     */
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2802
    public static String format(String format, Object... args) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2803
        return new Formatter().format(format, args).toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2804
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2805
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2806
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2807
     * Returns a formatted string using the specified locale, format string,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2808
     * and arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2809
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2810
     * @param  l
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2811
     *         The {@linkplain java.util.Locale locale} to apply during
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2812
     *         formatting.  If <tt>l</tt> is <tt>null</tt> then no localization
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2813
     *         is applied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2814
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2815
     * @param  format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2816
     *         A <a href="../util/Formatter.html#syntax">format string</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2817
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2818
     * @param  args
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2819
     *         Arguments referenced by the format specifiers in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2820
     *         string.  If there are more arguments than format specifiers, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2821
     *         extra arguments are ignored.  The number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2822
     *         variable and may be zero.  The maximum number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2823
     *         limited by the maximum dimension of a Java array as defined by
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7816
diff changeset
  2824
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7816
diff changeset
  2825
     *         The behaviour on a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2826
     *         <tt>null</tt> argument depends on the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2827
     *         href="../util/Formatter.html#syntax">conversion</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2828
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2829
     * @throws  IllegalFormatException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2830
     *          If a format string contains an illegal syntax, a format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2831
     *          specifier that is incompatible with the given arguments,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2832
     *          insufficient arguments given the format string, or other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2833
     *          illegal conditions.  For specification of all possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2834
     *          formatting errors, see the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2835
     *          href="../util/Formatter.html#detail">Details</a> section of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2836
     *          formatter class specification
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2837
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2838
     * @throws  NullPointerException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2839
     *          If the <tt>format</tt> is <tt>null</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2840
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2841
     * @return  A formatted string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2842
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2843
     * @see  java.util.Formatter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2844
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2845
     */
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2846
    public static String format(Locale l, String format, Object... args) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2847
        return new Formatter(l).format(format, args).toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2848
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2849
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2850
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2851
     * Returns the string representation of the {@code Object} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2852
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2853
     * @param   obj   an {@code Object}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2854
     * @return  if the argument is {@code null}, then a string equal to
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2855
     *          {@code "null"}; otherwise, the value of
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2856
     *          {@code obj.toString()} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2857
     * @see     java.lang.Object#toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2858
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2859
    public static String valueOf(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2860
        return (obj == null) ? "null" : obj.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2861
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2862
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2863
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2864
     * Returns the string representation of the {@code char} array
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2865
     * argument. The contents of the character array are copied; subsequent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2866
     * modification of the character array does not affect the newly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2867
     * created string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2868
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2869
     * @param   data   a {@code char} array.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2870
     * @return  a newly allocated string representing the same sequence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2871
     *          characters contained in the character array argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2872
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2873
    public static String valueOf(char data[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2874
        return new String(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2875
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2876
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2877
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2878
     * Returns the string representation of a specific subarray of the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2879
     * {@code char} array argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2880
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2881
     * The {@code offset} argument is the index of the first
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2882
     * character of the subarray. The {@code count} argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2883
     * specifies the length of the subarray. The contents of the subarray
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2884
     * are copied; subsequent modification of the character array does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2885
     * affect the newly created string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2886
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2887
     * @param   data     the character array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2888
     * @param   offset   the initial offset into the value of the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2889
     *                  {@code String}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2890
     * @param   count    the length of the value of the {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2891
     * @return  a string representing the sequence of characters contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2892
     *          in the subarray of the character array argument.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2893
     * @exception IndexOutOfBoundsException if {@code offset} is
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2894
     *          negative, or {@code count} is negative, or
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2895
     *          {@code offset+count} is larger than
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2896
     *          {@code data.length}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2897
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2898
    public static String valueOf(char data[], int offset, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2899
        return new String(data, offset, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2900
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2901
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2902
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2903
     * Returns a String that represents the character sequence in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2904
     * array specified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2905
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2906
     * @param   data     the character array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2907
     * @param   offset   initial offset of the subarray.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2908
     * @param   count    length of the subarray.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2909
     * @return  a {@code String} that contains the characters of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2910
     *          specified subarray of the character array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2911
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2912
    public static String copyValueOf(char data[], int offset, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2913
        // All public String constructors now copy the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2914
        return new String(data, offset, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2915
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2916
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2917
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2918
     * Returns a String that represents the character sequence in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2919
     * array specified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2920
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2921
     * @param   data   the character array.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2922
     * @return  a {@code String} that contains the characters of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2923
     *          character array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2924
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2925
    public static String copyValueOf(char data[]) {
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2926
        return new String(data);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2927
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2928
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2929
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2930
     * Returns the string representation of the {@code boolean} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2931
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2932
     * @param   b   a {@code boolean}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2933
     * @return  if the argument is {@code true}, a string equal to
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2934
     *          {@code "true"} is returned; otherwise, a string equal to
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2935
     *          {@code "false"} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2936
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2937
    public static String valueOf(boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2938
        return b ? "true" : "false";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2939
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2940
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2941
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2942
     * Returns the string representation of the {@code char}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2943
     * argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2944
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2945
     * @param   c   a {@code char}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2946
     * @return  a string of length {@code 1} containing
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2947
     *          as its single character the argument {@code c}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2948
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2949
    public static String valueOf(char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2950
        char data[] = {c};
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 11676
diff changeset
  2951
        return new String(data, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2952
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2953
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2954
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2955
     * Returns the string representation of the {@code int} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2956
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2957
     * The representation is exactly the one returned by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2958
     * {@code Integer.toString} method of one argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2959
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2960
     * @param   i   an {@code int}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2961
     * @return  a string representation of the {@code int} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2962
     * @see     java.lang.Integer#toString(int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2963
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2964
    public static String valueOf(int i) {
3964
cf913644be58 6480728: Byte.valueOf(byte) returns a cached value but Byte.valueOf(String)
darcy
parents: 3617
diff changeset
  2965
        return Integer.toString(i);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2966
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2967
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2968
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2969
     * Returns the string representation of the {@code long} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2970
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2971
     * The representation is exactly the one returned by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2972
     * {@code Long.toString} method of one argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2973
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2974
     * @param   l   a {@code long}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2975
     * @return  a string representation of the {@code long} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2976
     * @see     java.lang.Long#toString(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2977
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2978
    public static String valueOf(long l) {
3964
cf913644be58 6480728: Byte.valueOf(byte) returns a cached value but Byte.valueOf(String)
darcy
parents: 3617
diff changeset
  2979
        return Long.toString(l);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2980
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2981
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2982
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2983
     * Returns the string representation of the {@code float} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2984
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2985
     * The representation is exactly the one returned by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2986
     * {@code Float.toString} method of one argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2987
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2988
     * @param   f   a {@code float}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2989
     * @return  a string representation of the {@code float} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2990
     * @see     java.lang.Float#toString(float)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2991
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2992
    public static String valueOf(float f) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2993
        return Float.toString(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2994
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2995
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2996
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  2997
     * Returns the string representation of the {@code double} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2998
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2999
     * The representation is exactly the one returned by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3000
     * {@code Double.toString} method of one argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3001
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3002
     * @param   d   a {@code double}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3003
     * @return  a  string representation of the {@code double} argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3004
     * @see     java.lang.Double#toString(double)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3005
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3006
    public static String valueOf(double d) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3007
        return Double.toString(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3008
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3010
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3011
     * Returns a canonical representation for the string object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3012
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3013
     * A pool of strings, initially empty, is maintained privately by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3014
     * class {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3015
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3016
     * When the intern method is invoked, if the pool already contains a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3017
     * string equal to this {@code String} object as determined by
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3018
     * the {@link #equals(Object)} method, then the string from the pool is
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3019
     * returned. Otherwise, this {@code String} object is added to the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3020
     * pool and a reference to this {@code String} object is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3021
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3022
     * It follows that for any two strings {@code s} and {@code t},
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3023
     * {@code s.intern() == t.intern()} is {@code true}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11127
diff changeset
  3024
     * if and only if {@code s.equals(t)} is {@code true}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3025
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3026
     * All literal strings and string-valued constant expressions are
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7816
diff changeset
  3027
     * interned. String literals are defined in section 3.10.5 of the
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7816
diff changeset
  3028
     * <cite>The Java&trade; Language Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3029
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3030
     * @return  a string that has the same contents as this string, but is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3031
     *          guaranteed to be from a pool of unique strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3032
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3033
    public native String intern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3034
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3035
    /**
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3036
     * Seed value used for each alternative hash calculated.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3037
     */
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3038
    private static final int HASHING_SEED;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3039
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3040
    static {
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3041
        long nanos = System.nanoTime();
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3042
        long now = System.currentTimeMillis();
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3043
        int SEED_MATERIAL[] = {
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3044
                System.identityHashCode(String.class),
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3045
                System.identityHashCode(System.class),
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3046
                (int) (nanos >>> 32),
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3047
                (int) nanos,
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3048
                (int) (now >>> 32),
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3049
                (int) now,
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3050
                (int) (System.nanoTime() >>> 2)
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3051
        };
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3052
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3053
        // Use murmur3 to scramble the seeding material.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3054
        // Inline implementation to avoid loading classes
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3055
        int h1 = 0;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3056
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3057
        // body
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3058
        for(int k1 : SEED_MATERIAL) {
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3059
            k1 *= 0xcc9e2d51;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3060
            k1 = (k1 << 15) | (k1 >>> 17);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3061
            k1 *= 0x1b873593;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3062
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3063
            h1 ^= k1;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3064
            h1 = (h1 << 13) | (h1 >>> 19);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3065
            h1 = h1 * 5 + 0xe6546b64;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3066
        }
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3067
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3068
        // tail (always empty, as body is always 32-bit chunks)
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3069
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3070
        // finalization
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3071
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3072
        h1 ^= SEED_MATERIAL.length * 4;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3073
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3074
        // finalization mix force all bits of a hash block to avalanche
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3075
        h1 ^= h1 >>> 16;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3076
        h1 *= 0x85ebca6b;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3077
        h1 ^= h1 >>> 13;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3078
        h1 *= 0xc2b2ae35;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3079
        h1 ^= h1 >>> 16;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3080
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3081
        HASHING_SEED = h1;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3082
    }
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3083
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3084
    /**
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3085
     * Cached value of the hashing algorithm result
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3086
     */
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3087
    private transient int hash32 = 0;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3088
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3089
    /**
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3090
    * Return a 32-bit hash code value for this object.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3091
    * <p>
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3092
    * The general contract of {@code hash32} is:
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3093
    * <ul>
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3094
    * <li>Whenever it is invoked on the same object more than once during
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3095
    *     an execution of a Java application, the {@code hash32} method
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3096
    *     must consistently return the same integer, provided no information
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3097
    *     used in {@code equals} comparisons on the object is modified.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3098
    *     This integer need not remain consistent from one execution of an
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3099
    *     application to another execution of the same application.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3100
    * <li>If two objects are equal according to the {@code equals(Object)}
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3101
    *     method, then calling the {@code hash32} method on each of
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3102
    *     the two objects must produce the same integer result.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3103
    * <li>It is <em>not</em> required that if two objects are unequal
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3104
    *     according to the {@link java.lang.Object#equals(java.lang.Object)}
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3105
    *     method, then calling the {@code hash32} method on each of the
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3106
    *     two objects must produce distinct integer results.  However, the
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3107
    *     programmer should be aware that producing distinct integer results
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3108
    *     for unequal objects may improve the performance of hash tables.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3109
    * </ul>
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3110
    * <p/>
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3111
     * The hash value will never be zero.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3112
    *
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3113
    * @return  a hash code value for this object.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3114
    * @see     java.lang.Object#equals(java.lang.Object)
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3115
    */
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3116
    public int hash32() {
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3117
        int h = hash32;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3118
        if (0 == h) {
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3119
           // harmless data race on hash32 here.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3120
           h = sun.misc.Hashing.murmur3_32(HASHING_SEED, value, 0, value.length);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3121
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3122
           // ensure result is not zero to avoid recalcing
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3123
           h = (0 != h) ? h : 1;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3124
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3125
           hash32 = h;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3126
        }
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3127
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3128
        return h;
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3129
    }
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12858
diff changeset
  3130
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3131
}