GNU Classpath (0.17) | ||
Frames | No Frames |
Methods with parameter type java.lang.CharSequence | |
boolean |
Methods with parameter type java.lang.CharSequence | |
Matcher | |
boolean | |
Matcher | |
String[] | |
String[] |
Classes implementing java.lang.CharSequence | |
class | Strings represent an immutable set of characters. |
class | StringBuffer represents a changeable String .
|
class | StringBuilder represents a changeable String .
|
Constructors with parameter type java.lang.CharSequence | |
Create a new StringBuilder with the characters in the
specified CharSequence . |
Methods with parameter type java.lang.CharSequence | |
Appendable | Appends the specified sequence of Unicode characters to this
Appendable object. |
StringBuilder | Append the characters in the CharSequence to this
buffer.
|
Appendable | Appends the specified subsequence of Unicode characters to this
Appendable object, starting and ending at the specified
positions within the sequence. |
StringBuilder | Append some characters from the CharSequence to this
buffer. |
Methods with return type java.lang.CharSequence | |
CharSequence | CharSequence.subSequence(int begin, int end) Returns a new CharSequence of the indicated range.
|
CharSequence | String.subSequence(int begin, int end) Creates a substring of this String, starting at a specified index
and ending at one character before a specified index. |
CharSequence | StringBuffer.subSequence(int beginIndex, int endIndex) Creates a substring of this StringBuffer, starting at a specified index
and ending at one character before a specified index. |
CharSequence | StringBuilder.subSequence(int beginIndex, int endIndex) Creates a substring of this StringBuilder, starting at a specified index
and ending at one character before a specified index. |
Classes implementing java.lang.CharSequence | |
class |
Methods with parameter type java.lang.CharSequence | |
CharBuffer | Wraps a character sequence into a CharBuffer object.
|
CharBuffer | Wraps a character sequence into a CharBuffer object.
|
Methods with return type java.lang.CharSequence | |
CharSequence | CharBuffer.subSequence(int start, int length) Creates a new character buffer that represents the specified subsequence
of this buffer, relative to the current position.
|
GNU Classpath (0.17) |