< prev index next >

src/java.base/share/classes/java/lang/CharSequence.java

Print this page

        

*** 72,82 **** * to {@code length() - 1}. The first {@code char} value of the sequence is at * index zero, the next at index one, and so on, as for array * indexing. * * <p>If the {@code char} value specified by the index is a ! * <a href="{@docRoot}/java/lang/Character.html#unicode">surrogate</a>, the surrogate * value is returned. * * @param index the index of the {@code char} value to be returned * * @return the specified {@code char} value --- 72,82 ---- * to {@code length() - 1}. The first {@code char} value of the sequence is at * index zero, the next at index one, and so on, as for array * indexing. * * <p>If the {@code char} value specified by the index is a ! * <a href="{@docRoot}/java.base/java/lang/Character.html#unicode">surrogate</a>, the surrogate * value is returned. * * @param index the index of the {@code char} value to be returned * * @return the specified {@code char} value
*** 117,127 **** public String toString(); /** * Returns a stream of {@code int} zero-extending the {@code char} values * from this sequence. Any char which maps to a <a ! * href="{@docRoot}/java/lang/Character.html#unicode">surrogate code * point</a> is passed through uninterpreted. * * <p>The stream binds to this sequence when the terminal stream operation * commences (specifically, for mutable sequences the spliterator for the * stream is <a href="../util/Spliterator.html#binding"><em>late-binding</em></a>). --- 117,127 ---- public String toString(); /** * Returns a stream of {@code int} zero-extending the {@code char} values * from this sequence. Any char which maps to a <a ! * href="{@docRoot}/java.base/java/lang/Character.html#unicode">surrogate code * point</a> is passed through uninterpreted. * * <p>The stream binds to this sequence when the terminal stream operation * commences (specifically, for mutable sequences the spliterator for the * stream is <a href="../util/Spliterator.html#binding"><em>late-binding</em></a>).
< prev index next >