public static interface Output.Readable extends Output, CharSequence
Output that signals that what was written can be read back.Output.Readable| Modifier and Type | Method and Description |
|---|---|
int |
codePointAt(int index)
Returns the Unicode code point (starting) at the specified index.
|
default boolean |
contentEquals(CharSequence that)
Compares the contents of this object to the specified
CharSequence. |
default Reader |
reader()
Return a
Reader that reads the contents of this object. |
and, append, append, append, append, append, append, append, append, append, append, append, append, appendCodePoint, close, codePointAt, escape, escape, flush, format, format, getChars, lineNumbers, lines, multiplex, nowhere, output, output, output, output, output, output, printLines, println, println, println, println, println, println, println, println, println, stdErr, stdOut, string, stringBuilder, stringBuilder, writercharAt, chars, codePoints, length, subSequence, toStringint codePointAt(int index)
index - the index to the char values.indexIndexOutOfBoundsException - if the index argument is negative or not less than the
length of the contents of this object.the equivalent method of Stringdefault boolean contentEquals(CharSequence that)
CharSequence. The result is true if
and only if this instance holds the same sequence if char values as the specified sequence.that - the sequence to compare this instance against.true if this String represents the same sequence of char values as the
specified sequence, false otherwise.the equivalent method of String.Copyright © 2019. All rights reserved.