Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A C D E G H I M N O P R S T

A

advancePosition() - Method in class org.fencedb.util.StringTokenizer
Advances the state of the tokenizer to the next token or delimiter.

C

countTokens() - Method in class org.fencedb.util.StringTokenizer
Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception.
countTokens(String) - Method in class org.fencedb.util.StringTokenizer
Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception using the given set of (nontoken) delimiters.
countTokens(String, boolean) - Method in class org.fencedb.util.StringTokenizer
Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception using the given set of delimiters.
countTokens(String, String) - Method in class org.fencedb.util.StringTokenizer
Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception using the given set of delimiters.
countTokens(String, String, boolean) - Method in class org.fencedb.util.StringTokenizer
Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception using the given set of delimiters.

D

delimsChangedPosition - Variable in class org.fencedb.util.StringTokenizer
Indicates at which position the delimiters last changed.

E

emptyReturned - Variable in class org.fencedb.util.StringTokenizer
One of two variables used to maintain state through the tokenizing process.

G

getCurrentPosition() - Method in class org.fencedb.util.StringTokenizer
Get the the index of the character immediately following the end of the last token.

H

hasMoreElements() - Method in class org.fencedb.util.StringTokenizer
Returns the same value as the hasMoreTokens() method.
hasMoreTokens() - Method in class org.fencedb.util.StringTokenizer
Tests if there are more tokens available from this tokenizer's string.
hasNext() - Method in class org.fencedb.util.StringTokenizer
Returns the same value as the hasMoreTokens() method.

I

indexOfNextDelimiter(int) - Method in class org.fencedb.util.StringTokenizer
Similar to String.indexOf(int, String) but will look for any character from string rather than the entire string.

M

maxDelimChar - Variable in class org.fencedb.util.StringTokenizer
Stores the value of the delimiter character with the highest value.

N

next() - Method in class org.fencedb.util.StringTokenizer
Returns the same value as the nextToken() method, except that its declared return value is Object rather than String.
nextElement() - Method in class org.fencedb.util.StringTokenizer
Returns the same value as the nextToken() method, except that its declared return value is Object rather than String.
nextToken() - Method in class org.fencedb.util.StringTokenizer
Returns the next token from this string tokenizer.
nextToken(String, String) - Method in class org.fencedb.util.StringTokenizer
Returns the next token in this string tokenizer's string.
nextToken(String, String, boolean) - Method in class org.fencedb.util.StringTokenizer
Returns the next token in this string tokenizer's string.
nextToken(String, boolean) - Method in class org.fencedb.util.StringTokenizer
Returns the next token in this string tokenizer's string.
nextToken(String) - Method in class org.fencedb.util.StringTokenizer
Returns the next token in this string tokenizer's string.
nontokenDelims - Variable in class org.fencedb.util.StringTokenizer
The set of nontoken delimiters.

O

org.fencedb.util - package org.fencedb.util
 

P

peek() - Method in class org.fencedb.util.StringTokenizer
Returns the same value as nextToken() but does not alter the internal state of the Tokenizer.
position - Variable in class org.fencedb.util.StringTokenizer
One of two variables used to maintain state through the tokenizing process.

R

remove() - Method in class org.fencedb.util.StringTokenizer
This implementation always throws UnsupportedOperationException.
restOfText() - Method in class org.fencedb.util.StringTokenizer
Retrieves the rest of the text as a single token.
returnEmptyTokens - Variable in class org.fencedb.util.StringTokenizer
Whether empty tokens should be returned.

S

StringTokenizer - class org.fencedb.util.StringTokenizer.
The string tokenizer class allows an application to break a string into tokens.
StringTokenizer(String, String, String) - Constructor for class org.fencedb.util.StringTokenizer
Constructs a string tokenizer for the specified string.
StringTokenizer(String, String, String, boolean) - Constructor for class org.fencedb.util.StringTokenizer
Constructs a string tokenizer for the specified string.
StringTokenizer(String, String, boolean) - Constructor for class org.fencedb.util.StringTokenizer
Constructs a string tokenizer for the specified string.
StringTokenizer(String, String) - Constructor for class org.fencedb.util.StringTokenizer
Constructs a string tokenizer for the specified string.
StringTokenizer(String) - Constructor for class org.fencedb.util.StringTokenizer
Constructs a string tokenizer for the specified string.
setDelimiters(String) - Method in class org.fencedb.util.StringTokenizer
Set the delimiters used to this set of (nontoken) delimiters.
setDelimiters(String, boolean) - Method in class org.fencedb.util.StringTokenizer
Set the delimiters used to this set of delimiters.
setDelimiters(String, String) - Method in class org.fencedb.util.StringTokenizer
Set the delimiters used to this set of delimiters.
setDelimiters(String, String, boolean) - Method in class org.fencedb.util.StringTokenizer
Set the delimiters used to this set of delimiters.
setDelims(String, String) - Method in class org.fencedb.util.StringTokenizer
Set the delimiters for this StringTokenizer.
setReturnEmptyTokens(boolean) - Method in class org.fencedb.util.StringTokenizer
Set whether empty tokens should be returned from this point in in the tokenizing process onward.
setText(String) - Method in class org.fencedb.util.StringTokenizer
Set the text to be tokenized in this StringTokenizer.
skipDelimiters() - Method in class org.fencedb.util.StringTokenizer
Advances the current position so it is before the next token.
strLength - Variable in class org.fencedb.util.StringTokenizer
The length of the text.

T

text - Variable in class org.fencedb.util.StringTokenizer
The string to be tokenized.
toArray() - Method in class org.fencedb.util.StringTokenizer
Retrieve all of the remaining tokens in a String array.
tokenCount - Variable in class org.fencedb.util.StringTokenizer
A cache of the token count.
tokenDelims - Variable in class org.fencedb.util.StringTokenizer
The set of token delimiters.

A C D E G H I M N O P R S T