Java EE 5 SDK

com.sun.appserv.management.util.misc
Class TokenizerParams

java.lang.Object
  extended by com.sun.appserv.management.util.misc.TokenizerParams

public class TokenizerParams
extends Object

Parameters that TokenizerImpl accepts.


Field Summary
static char BACKSLASH
           
static char COMMA
           
static String DEFAULT_DELIMITERS
           
static char DEFAULT_ESCAPE_CHAR
           
 String mDelimiters
          Delimiters are characters that separate tokens.
 boolean mEmitInvalidEscapeSequencesLiterally
          When an invalid escape sequence is encountered, either an exception may be thrown, or the sequence may be emitted literally.
 String mEscapableChars
          Characters which may be escaped over and above the standard ones.
 char mEscapeChar
          The escape char, allowed to be anything, but typically should be BACKSLASH.
 boolean mMultipleDelimsCountAsOne
          When multiple delimiters abut each other, are they all treated as a single delimiter, or as multiples with implied empty tokens between them?
 
Constructor Summary
TokenizerParams()
           
 
Method Summary
 void ensureDelimitersEscapable()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

mDelimiters

public String mDelimiters
Delimiters are characters that separate tokens.


mMultipleDelimsCountAsOne

public boolean mMultipleDelimsCountAsOne
When multiple delimiters abut each other, are they all treated as a single delimiter, or as multiples with implied empty tokens between them?


mEscapeChar

public char mEscapeChar
The escape char, allowed to be anything, but typically should be BACKSLASH.


mEscapableChars

public String mEscapableChars
Characters which may be escaped over and above the standard ones.


mEmitInvalidEscapeSequencesLiterally

public boolean mEmitInvalidEscapeSequencesLiterally
When an invalid escape sequence is encountered, either an exception may be thrown, or the sequence may be emitted literally.


BACKSLASH

public static final char BACKSLASH
See Also:
Constant Field Values

COMMA

public static final char COMMA
See Also:
Constant Field Values

DEFAULT_ESCAPE_CHAR

public static final char DEFAULT_ESCAPE_CHAR
See Also:
Constant Field Values

DEFAULT_DELIMITERS

public static final String DEFAULT_DELIMITERS
See Also:
Constant Field Values
Constructor Detail

TokenizerParams

public TokenizerParams()
Method Detail

ensureDelimitersEscapable

public void ensureDelimitersEscapable()

Java EE 5 SDK

Submit a bug or feature

Copyright 2006 Sun Microsystems, Inc. All rights reserved.