Static Public Methods | |
List | _tokenizeKeys (String yKEYS) |
String | _wrapString (String ySOURCE, int iMAX_LENGTH) |
String | _wrapString (String ySOURCE, int iMAX_LENGTH, char cLAST_CHAR) |
String | _wrapString (String ySOURCE, int iMAX_LENGTH, char cLAST_CHAR, String ySUFFIX) |
Definition at line 35 of file TStringUtils.java.
|
Takes a string containing space-separated tokens and returns a list with them.
Definition at line 48 of file TStringUtils.java. |
|
The same as _wrapString (String, int, char) but appends a tail if the string was wrapped.
Definition at line 108 of file TStringUtils.java. |
|
If string ySOURCE length is greater than iMAX_LENGTH then it wraps to the substring 0..I-1 where I is the index of the last ocurrence of cLAST_CHAR within. By default, an ellipsis is appended.
Definition at line 93 of file TStringUtils.java. References text::TStringUtils::_wrapString(). |
|
If string ySOURCE length is greater than iMAX_LENGTH then it wraps to the substring 0..I-1 where I is the index of the last ocurrence of an space ' ' within. By default, an ellipsis is appended.
Definition at line 79 of file TStringUtils.java. Referenced by text::TStringUtils::_wrapString(). |