Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Interface
java.lang.CharSequence
Packages that use CharSequence
Provides for system input and output through data streams, serialization and the file system.
Provides classes that are fundamental to the design of the Java programming language.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Methods in java.io with parameters of type CharSequence
CharArrayWriter.append(CharSequence csq)
Appends the specified character sequence to this writer.
CharArrayWriter.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
OutputStreamWriter.append(CharSequence csq)
Appends the specified character sequence to this writer.
OutputStreamWriter.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
PrintStream.append(CharSequence csq)
Appends the specified character sequence to this output stream.
PrintStream.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this output stream.
PrintWriter.append(CharSequence csq)
Appends the specified character sequence to this writer.
PrintWriter.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
StringWriter.append(CharSequence csq)
Appends the specified character sequence to this writer.
StringWriter.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
Writer.append(CharSequence csq)
Appends the specified character sequence to this writer.
Writer.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
Classes in java.lang that implement CharSequence
class
The String class represents character strings.
class
A thread-safe, mutable sequence of characters.
class
A mutable sequence of characters.
Methods in java.lang that return CharSequence
CharSequence.subSequence(int start, int end)
Returns a CharSequence that is a subsequence of this sequence.
String.subSequence(int beginIndex, int endIndex)
Returns a character sequence that is a subsequence of this sequence.
StringBuffer.subSequence(int start, int end)
Returns a new character sequence that is a subsequence of this sequence.
StringBuilder.subSequence(int start, int end)
Returns a new character sequence that is a subsequence of this sequence.
Methods in java.lang with parameters of type CharSequence
Appendable.append(CharSequence csq)
Appends the specified character sequence to this Appendable.
Appendable.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this Appendable.
static int
Character.codePointAt(CharSequence seq, int index)
Returns the code point at the given index of the CharSequence.
static int
Character.codePointBefore(CharSequence seq, int index)
Returns the code point preceding the given index of the CharSequence.
static int
Character.codePointCount(CharSequence seq, int beginIndex, int endIndex)
Returns the number of Unicode code points in the text range of the specified char sequence.
static int
Character.offsetByCodePoints(CharSequence seq, int index, int codePointOffset)
Returns the index within the given char sequence that is offset from the given index by codePointOffset code points.
static int
CharSequence.compare(CharSequence cs1, CharSequence cs2)
Compares two CharSequence instances lexicographically.
static int
Integer.parseInt(CharSequence s, int beginIndex, int endIndex, int radix)
Parses the CharSequence argument as a signed int in the specified radix, beginning at the specified beginIndex and extending to endIndex - 1.
static int
Integer.parseUnsignedInt(CharSequence s, int beginIndex, int endIndex, int radix)
Parses the CharSequence argument as an unsigned int in the specified radix, beginning at the specified beginIndex and extending to endIndex - 1.
static long
Long.parseLong(CharSequence s, int beginIndex, int endIndex, int radix)
Parses the CharSequence argument as a signed long in the specified radix, beginning at the specified beginIndex and extending to endIndex - 1.
static long
Long.parseUnsignedLong(CharSequence s, int beginIndex, int endIndex, int radix)
Parses the CharSequence argument as an unsigned long in the specified radix, beginning at the specified beginIndex and extending to endIndex - 1.
boolean
Returns true if and only if this string contains the specified sequence of char values.
boolean
Compares this string to the specified CharSequence.
static String
String.join(CharSequence delimiter, CharSequence... elements)
Returns a new String composed of copies of the CharSequence elements joined together with a copy of the specified delimiter.
static String
String.join(CharSequence delimiter, Iterable<? extends CharSequence> elements)
Returns a new String composed of copies of the CharSequence elements joined together with a copy of the specified delimiter.
String.replace(CharSequence target, CharSequence replacement)
Replaces each substring of this string that matches the literal target sequence with the specified literal replacement sequence.
StringBuffer.append(CharSequence s)
Appends the specified CharSequence to this sequence.
StringBuffer.append(CharSequence s, int start, int end)
Appends a subsequence of the specified CharSequence to this sequence.
StringBuffer.insert(int dstOffset, CharSequence s)
Inserts the specified CharSequence into this sequence.
StringBuffer.insert(int dstOffset, CharSequence s, int start, int end)
Inserts a subsequence of the specified CharSequence into this sequence.
StringBuilder.append(CharSequence s)
Appends the specified character sequence to this Appendable.
StringBuilder.append(CharSequence s, int start, int end)
Appends a subsequence of the specified CharSequence to this sequence.
StringBuilder.insert(int dstOffset, CharSequence s)
Inserts the specified CharSequence into this sequence.
StringBuilder.insert(int dstOffset, CharSequence s, int start, int end)
Inserts a subsequence of the specified CharSequence into this sequence.
Method parameters in java.lang with type arguments of type CharSequence
static String
String.join(CharSequence delimiter, Iterable<? extends CharSequence> elements)
Returns a new String composed of copies of the CharSequence elements joined together with a copy of the specified delimiter.
Constructors in java.lang with parameters of type CharSequence
Constructs a string buffer that contains the same characters as the specified CharSequence.
Constructs a string builder that contains the same characters as the specified CharSequence.
Methods in java.util with parameters of type CharSequence
static int
HexFormat.fromHexDigits(CharSequence string)
Returns the int value parsed from a string of up to eight hexadecimal characters.
static int
HexFormat.fromHexDigits(CharSequence string, int fromIndex, int toIndex)
Returns the int value parsed from a string range of up to eight hexadecimal characters.
static long
Returns the long value parsed from a string of up to sixteen hexadecimal characters.
static long
HexFormat.fromHexDigitsToLong(CharSequence string, int fromIndex, int toIndex)
Returns the long value parsed from a string range of up to sixteen hexadecimal characters.
byte[]
HexFormat.parseHex(CharSequence string)
Returns a byte array containing hexadecimal values parsed from the string.
byte[]
HexFormat.parseHex(CharSequence string, int fromIndex, int toIndex)
Returns a byte array containing hexadecimal values parsed from a range of the string.
StringJoiner.add(CharSequence newElement)
Adds a copy of the given CharSequence value as the next element of the StringJoiner value.
StringJoiner.setEmptyValue(CharSequence emptyValue)
Sets the sequence of characters to be used when determining the string representation of this StringJoiner and no elements have been added yet, that is, when it is empty.
Constructors in java.util with parameters of type CharSequence
Constructs a StringJoiner with no characters in it, with no prefix or suffix, and a copy of the supplied delimiter.
Constructs a StringJoiner with no characters in it using copies of the supplied prefix, delimiter and suffix.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz