| java.lang.Object de.susebox.jtopas.StringSource
StringSource | public StringSource(String data)(Code) | | Constructing a StringSource on the given
java.lang.String .
A null value is handled like an empty string.
Parameters: data - the string |
charAt | public char charAt(int index)(Code) | | Implements
java.lang.CharSequence.charAt for this class.
Parameters: index - which character to retrieve the character at the given index |
read | public int read(char[] cbuf, int offset, int maxChars) throws Exception(Code) | | This method copies the available data into the given buffer according to
the given offset and maximum character count. See
TokenizerSource.read for details.
Parameters: cbuf - buffer to receive data Parameters: offset - position from where the data should be inserted in cbuf Parameters: maxChars - maximum number of characters to be read into cbuf actually read characters or -1 on an end-of-file condition |
subSequence | public CharSequence subSequence(int start, int end)(Code) | | Implements
java.lang.CharSequence.subSequence for this class.
Parameters: start - the new CharSequence contains the characters from and including this position Parameters: end - the new CharSequence contains the characters up to and excluding this position a part of this CharSequence |
|
|