|
Blocks :
|
|
|
Relates :
|
If a StringJoiner has been constructed and the user requests a subSequence that is entirely within the bounds of the suffix, then the entire suffix is returned instead of the requested subSequence.
Example:
StringJoiner sj = new StringJoiner("-","Begin<", ">End"); sj.add("Foo");
then sj.subSequence( 10, 13 ) returns ">End" instead of "End"
|