Uses of Class
gnu.lists.IString
-
Packages that use IString Package Description gnu.lists Contains utility classes and interfaces for sequences (lists), arrays, and trees. -
-
Uses of IString in gnu.lists
Subclasses of IString in gnu.lists Modifier and Type Class Description static class
IString.SubString
Methods in gnu.lists that return IString Modifier and Type Method Description static IString
Strings. indirectIndexed(CharSequence base, IntSequence indexes)
Make a read-only substring, generalized to arbitrary index sequences.IString
IString. subSequence(int from, int to)
Substring using offsets in code-units (16-bit chars).static IString
IString. valueOf(CharSequence str)
static IString
IString. valueOf(CharSequence str, int start, int count)
Methods in gnu.lists with parameters of type IString Modifier and Type Method Description int
IString. compareTo(IString other)
Constructors in gnu.lists with parameters of type IString Constructor Description SubString(IString base, int start, int end)
Create a substring of the given base string.SubString(IString base, int start, int end, int jlStart, int jlEnd)
-