| 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcynosurex.util.EnhancedStringTokenizer
public class EnhancedStringTokenizer
EnhancedStringTokenizer is an enhancement of the Java StringTokenizer class. It added the ability to peek at the next token, to return the last token, and to reset the queue.
| Field Summary | 
|---|
| Fields inherited from interface cynosurex.internal.CommonInterface | 
|---|
copyright, copyrightYears, notice, program, version | 
| Fields inherited from interface cynosurex.internal.AuthorCommon | 
|---|
author, copyrightSymbol, noticeMsg, rights | 
| Fields inherited from interface cynosurex.internal.CompanyCommon | 
|---|
company, email, website | 
| Constructor Summary | |
|---|---|
EnhancedStringTokenizer(java.lang.String str)
Constructs a string tokenizer for the specified string.  | 
|
EnhancedStringTokenizer(java.lang.String str,
                        java.lang.String delim)
Constructs a string tokenizer for the specified string.  | 
|
EnhancedStringTokenizer(java.lang.String str,
                        java.lang.String delim,
                        boolean returnTokens)
Constructs a string tokenizer for the specified string.  | 
|
EnhancedStringTokenizer(java.lang.String str,
                        java.lang.String delim,
                        boolean returnTokens,
                        boolean multiDelim)
Constructs a string tokenizer for the specified string.  | 
|
| Method Summary | |
|---|---|
 int | 
countTokens()
Calculates the number of times that this tokenizer's nextToken method can be called before it generates an 
 exception. | 
 boolean | 
hasMoreElements()
Returns the same value as the hasMoreTokens
 method. | 
 boolean | 
hasMoreTokens()
Tests if there are more tokens available from this tokenizer's string.  | 
 java.lang.String | 
lastToken()
Method to return the last token in the queue.  | 
 java.lang.Object | 
nextElement()
Returns the same value as the nextToken method,
 except that its declared return value is Object rather than
 String. | 
 java.lang.String | 
nextToken()
Returns the next token from this string tokenizer.  | 
 java.lang.String | 
nextToken(java.lang.String delim)
Returns the next token in this string tokenizer's string.  | 
 java.lang.String | 
peekToken()
Method to return the next token without removing it from the queue.  | 
 void | 
reset()
Method to return the StringTokenizer to the original queue.  | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public EnhancedStringTokenizer(java.lang.String str,
                               java.lang.String delim,
                               boolean returnTokens,
                               boolean multiDelim)
 Constructs a string tokenizer for the specified string. The 
 characters in the delim argument are the delimiters 
 for separating tokens. 
 
 If the returnTokens flag is true, then 
 the delimiter characters are also returned as tokens. If the flag is 
 false, the delimiter characters are skipped and only 
 serve as separators between tokens. 
 
 If the multiDelim flag is true, then
 multiple delimiters are returned as one token. If false,
 each delimiter is returned as a string of length one.
 This flag has no effect if delimiters are not returned as tokens.
 
str - a string to be parsed.delim - the delimiters.returnTokens - flag indicating whether to return the delimiters
                         as tokens.multiDelim - flag indicating whether to return multiple delimiters
                         as one token.
public EnhancedStringTokenizer(java.lang.String str,
                               java.lang.String delim,
                               boolean returnTokens)
delim argument are the delimiters 
 for separating tokens. 
 
 If the returnTokens flag is true, then 
 the delimiter characters are also returned as tokens. Each 
 delimiter is returned as a string of length one. If the flag is 
 false, the delimiter characters are skipped and only 
 serve as separators between tokens.
str - a string to be parsed.delim - the delimiters.returnTokens - flag indicating whether to return the delimiters
                         as tokens.
public EnhancedStringTokenizer(java.lang.String str,
                               java.lang.String delim)
delim argument are the delimiters 
 for separating tokens.
str - a string to be parsed.delim - the delimiters.public EnhancedStringTokenizer(java.lang.String str)
"\t\n\r": the space character, the tab
 character, the newline character, and the carriage-return character.
str - a string to be parsed.| Method Detail | 
|---|
public boolean hasMoreTokens()
true if there are more tokens available from this
          tokenizer's string; false otherwise.public java.lang.String nextToken()
java.util.NoSuchElementException - if there are no more tokens in this
               tokenizer's string.public java.lang.String nextToken(java.lang.String delim)
delim - the new delimiters.
java.util.NoSuchElementException - if there are no more tokens in this
               tokenizer's string.public boolean hasMoreElements()
hasMoreTokens
 method. It exists so that this class can implement the
 Enumeration interface.
hasMoreElements in interface java.util.Enumerationtrue if there are more tokens;
          false otherwise.Enumerationpublic java.lang.Object nextElement()
nextToken method,
 except that its declared return value is Object rather than
 String. It exists so that this class can implement the
 Enumeration interface.
nextElement in interface java.util.Enumerationjava.util.NoSuchElementException - if there are no more tokens in this
               tokenizer's string.Enumerationpublic int countTokens()
nextToken method can be called before it generates an 
 exception.
public java.lang.String peekToken()
public java.lang.String lastToken()
public void reset()
  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||