|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.lang3.CharSequenceUtils
public class CharSequenceUtils
Operations on CharSequence
that are
null
safe.
CharSequence
Constructor Summary | |
---|---|
CharSequenceUtils()
CharSequenceUtils instances should NOT be constructed in
standard programming. |
Method Summary | |
---|---|
static CharSequence |
subSequence(CharSequence cs,
int start)
Returns a new CharSequence that is a subsequence of this
sequence starting with the char value at the specified index. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CharSequenceUtils()
CharSequenceUtils
instances should NOT be constructed in
standard programming.
This constructor is public to permit tools that require a JavaBean instance to operate.
Method Detail |
---|
public static CharSequence subSequence(CharSequence cs, int start)
Returns a new CharSequence
that is a subsequence of this
sequence starting with the char
value at the specified index.
This provides the CharSequence
equivalent to String.substring(int)
.
The length (in char
) of the returned sequence is length() - start
,
so if start == end
then an empty sequence is returned.
cs
- the specified subsequence, null returns nullstart
- the start index, inclusive, valid
IndexOutOfBoundsException
- if start
is negative or if
start
is greater than length()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |