Uses of Class
gnu.lists.FString
-
Packages that use FString Package Description gnu.kawa.functions gnu.lists Contains utility classes and interfaces for sequences (lists), arrays, and trees. -
-
Uses of FString in gnu.kawa.functions
Methods in gnu.kawa.functions that return FString Modifier and Type Method Description static FString
Format. formatToFString(char style, Object fmt, Object[] args)
Apply format and argument, yielding an FString. -
Uses of FString in gnu.lists
Subclasses of FString in gnu.lists Modifier and Type Class Description class
CharBuffer
Editable character sequence using a buffer-gap implementation and self-adjusting position.Methods in gnu.lists that return FString Modifier and Type Method Description static FString
FString. alloc(int sz)
Create a empty string, but with a given initial buffer size.FString
FString. append(char c)
FString
FString. append(CharSequence csq)
FString
FString. append(CharSequence csq, int start, int end)
FString
FString. append(Object obj)
FString
FString. appendCharacter(int c)
Append a Unicode code point.FString
FString. copy(int start, int end)
protected FString
FString. newInstance(int newLength)
FString
FString. prepend(CharSequence str, int start, int end)
FString
FString. prepend(Object obj)
FString
FString. prependCharacter(int c)
Constructors in gnu.lists with parameters of type FString Constructor Description CharBuffer(FString str)
-