author | simonis |
Fri, 14 Aug 2015 10:35:45 +0200 | |
changeset 32209 | 24bb680a1609 |
parent 32033 | bf24e33c7919 |
child 42225 | 07097c84db68 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
2 |
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.lang; |
|
27 |
||
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
28 |
import java.util.NoSuchElementException; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
29 |
import java.util.PrimitiveIterator; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
30 |
import java.util.Spliterator; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
31 |
import java.util.Spliterators; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
32 |
import java.util.function.IntConsumer; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
33 |
import java.util.stream.IntStream; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
34 |
import java.util.stream.StreamSupport; |
2 | 35 |
|
36 |
/** |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
37 |
* A {@code CharSequence} is a readable sequence of {@code char} values. This |
2 | 38 |
* interface provides uniform, read-only access to many different kinds of |
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
39 |
* {@code char} sequences. |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
40 |
* A {@code char} value represents a character in the <i>Basic |
2 | 41 |
* Multilingual Plane (BMP)</i> or a surrogate. Refer to <a |
42 |
* href="Character.html#unicode">Unicode Character Representation</a> for details. |
|
43 |
* |
|
44 |
* <p> This interface does not refine the general contracts of the {@link |
|
45 |
* java.lang.Object#equals(java.lang.Object) equals} and {@link |
|
46 |
* java.lang.Object#hashCode() hashCode} methods. The result of comparing two |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
47 |
* objects that implement {@code CharSequence} is therefore, in general, |
2 | 48 |
* undefined. Each object may be implemented by a different class, and there |
49 |
* is no guarantee that each class will be capable of testing its instances |
|
50 |
* for equality with those of the other. It is therefore inappropriate to use |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
51 |
* arbitrary {@code CharSequence} instances as elements in a set or as keys in |
2 | 52 |
* a map. </p> |
53 |
* |
|
54 |
* @author Mike McCloskey |
|
55 |
* @since 1.4 |
|
56 |
* @spec JSR-51 |
|
57 |
*/ |
|
58 |
||
59 |
public interface CharSequence { |
|
60 |
||
61 |
/** |
|
62 |
* Returns the length of this character sequence. The length is the number |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
63 |
* of 16-bit {@code char}s in the sequence. |
2 | 64 |
* |
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
65 |
* @return the number of {@code char}s in this sequence |
2 | 66 |
*/ |
67 |
int length(); |
|
68 |
||
69 |
/** |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
70 |
* Returns the {@code char} value at the specified index. An index ranges from zero |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
71 |
* to {@code length() - 1}. The first {@code char} value of the sequence is at |
2 | 72 |
* index zero, the next at index one, and so on, as for array |
18776 | 73 |
* indexing. |
2 | 74 |
* |
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
75 |
* <p>If the {@code char} value specified by the index is a |
8982
19c972e3d3ee
7009422: Two dead links in Swing API documentation
rupashka
parents:
5506
diff
changeset
|
76 |
* <a href="{@docRoot}/java/lang/Character.html#unicode">surrogate</a>, the surrogate |
2 | 77 |
* value is returned. |
78 |
* |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
79 |
* @param index the index of the {@code char} value to be returned |
2 | 80 |
* |
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
81 |
* @return the specified {@code char} value |
2 | 82 |
* |
83 |
* @throws IndexOutOfBoundsException |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
84 |
* if the {@code index} argument is negative or not less than |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
85 |
* {@code length()} |
2 | 86 |
*/ |
87 |
char charAt(int index); |
|
88 |
||
89 |
/** |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
90 |
* Returns a {@code CharSequence} that is a subsequence of this sequence. |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
91 |
* The subsequence starts with the {@code char} value at the specified index and |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
92 |
* ends with the {@code char} value at index {@code end - 1}. The length |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
93 |
* (in {@code char}s) of the |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
94 |
* returned sequence is {@code end - start}, so if {@code start == end} |
18776 | 95 |
* then an empty sequence is returned. |
2 | 96 |
* |
97 |
* @param start the start index, inclusive |
|
98 |
* @param end the end index, exclusive |
|
99 |
* |
|
100 |
* @return the specified subsequence |
|
101 |
* |
|
102 |
* @throws IndexOutOfBoundsException |
|
32033
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
103 |
* if {@code start} or {@code end} are negative, |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
104 |
* if {@code end} is greater than {@code length()}, |
bf24e33c7919
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents:
25859
diff
changeset
|
105 |
* or if {@code start} is greater than {@code end} |
2 | 106 |
*/ |
107 |
CharSequence subSequence(int start, int end); |
|
108 |
||
109 |
/** |
|
110 |
* Returns a string containing the characters in this sequence in the same |
|
111 |
* order as this sequence. The length of the string will be the length of |
|
18776 | 112 |
* this sequence. |
2 | 113 |
* |
114 |
* @return a string consisting of exactly this sequence of characters |
|
115 |
*/ |
|
116 |
public String toString(); |
|
117 |
||
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
118 |
/** |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
119 |
* Returns a stream of {@code int} zero-extending the {@code char} values |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
120 |
* from this sequence. Any char which maps to a <a |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
121 |
* href="{@docRoot}/java/lang/Character.html#unicode">surrogate code |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
122 |
* point</a> is passed through uninterpreted. |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
123 |
* |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
124 |
* <p>If the sequence is mutated while the stream is being read, the |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
125 |
* result is undefined. |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
126 |
* |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
127 |
* @return an IntStream of char values from this sequence |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
128 |
* @since 1.8 |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
129 |
*/ |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
130 |
public default IntStream chars() { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
131 |
class CharIterator implements PrimitiveIterator.OfInt { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
132 |
int cur = 0; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
133 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
134 |
public boolean hasNext() { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
135 |
return cur < length(); |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
136 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
137 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
138 |
public int nextInt() { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
139 |
if (hasNext()) { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
140 |
return charAt(cur++); |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
141 |
} else { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
142 |
throw new NoSuchElementException(); |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
143 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
144 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
145 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
146 |
@Override |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
147 |
public void forEachRemaining(IntConsumer block) { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
148 |
for (; cur < length(); cur++) { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
149 |
block.accept(charAt(cur)); |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
150 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
151 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
152 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
153 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
154 |
return StreamSupport.intStream(() -> |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
155 |
Spliterators.spliterator( |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
156 |
new CharIterator(), |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
157 |
length(), |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
158 |
Spliterator.ORDERED), |
18822
4b6be7c19547
8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents:
18776
diff
changeset
|
159 |
Spliterator.SUBSIZED | Spliterator.SIZED | Spliterator.ORDERED, |
4b6be7c19547
8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents:
18776
diff
changeset
|
160 |
false); |
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
161 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
162 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
163 |
/** |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
164 |
* Returns a stream of code point values from this sequence. Any surrogate |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
165 |
* pairs encountered in the sequence are combined as if by {@linkplain |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
166 |
* Character#toCodePoint Character.toCodePoint} and the result is passed |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
167 |
* to the stream. Any other code units, including ordinary BMP characters, |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
168 |
* unpaired surrogates, and undefined code units, are zero-extended to |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
169 |
* {@code int} values which are then passed to the stream. |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
170 |
* |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
171 |
* <p>If the sequence is mutated while the stream is being read, the result |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
172 |
* is undefined. |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
173 |
* |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
174 |
* @return an IntStream of Unicode code points from this sequence |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
175 |
* @since 1.8 |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
176 |
*/ |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
177 |
public default IntStream codePoints() { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
178 |
class CodePointIterator implements PrimitiveIterator.OfInt { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
179 |
int cur = 0; |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
180 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
181 |
@Override |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
182 |
public void forEachRemaining(IntConsumer block) { |
18141 | 183 |
final int length = length(); |
184 |
int i = cur; |
|
185 |
try { |
|
186 |
while (i < length) { |
|
187 |
char c1 = charAt(i++); |
|
188 |
if (!Character.isHighSurrogate(c1) || i >= length) { |
|
189 |
block.accept(c1); |
|
190 |
} else { |
|
191 |
char c2 = charAt(i); |
|
192 |
if (Character.isLowSurrogate(c2)) { |
|
193 |
i++; |
|
194 |
block.accept(Character.toCodePoint(c1, c2)); |
|
195 |
} else { |
|
196 |
block.accept(c1); |
|
197 |
} |
|
198 |
} |
|
199 |
} |
|
200 |
} finally { |
|
201 |
cur = i; |
|
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
202 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
203 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
204 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
205 |
public boolean hasNext() { |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
206 |
return cur < length(); |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
207 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
208 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
209 |
public int nextInt() { |
18141 | 210 |
final int length = length(); |
211 |
||
212 |
if (cur >= length) { |
|
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
213 |
throw new NoSuchElementException(); |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
214 |
} |
18141 | 215 |
char c1 = charAt(cur++); |
216 |
if (Character.isHighSurrogate(c1) && cur < length) { |
|
217 |
char c2 = charAt(cur); |
|
218 |
if (Character.isLowSurrogate(c2)) { |
|
219 |
cur++; |
|
220 |
return Character.toCodePoint(c1, c2); |
|
221 |
} |
|
222 |
} |
|
223 |
return c1; |
|
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
224 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
225 |
} |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
226 |
|
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
227 |
return StreamSupport.intStream(() -> |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
228 |
Spliterators.spliteratorUnknownSize( |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
229 |
new CodePointIterator(), |
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
230 |
Spliterator.ORDERED), |
20182
7e90af95fc4e
8025002: "".codePoints().sorted().iterator().hasNext() causes NegativeArraySizeException
psandoz
parents:
18822
diff
changeset
|
231 |
Spliterator.ORDERED, |
18822
4b6be7c19547
8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents:
18776
diff
changeset
|
232 |
false); |
17210
8a90d05f28d8
8012665: add CharSequence.chars, CharSequence.codePoints
mduigou
parents:
14342
diff
changeset
|
233 |
} |
2 | 234 |
} |