| java.lang.Object java.util.regex.SpecialToken
All known Subclasses: java.util.regex.AbstractCharClass, java.util.regex.Quantifier,
SpecialToken | abstract class SpecialToken (Code) | | This is base class for special tokens like character classes
and quantifiers.
author: Nikolay A. Kuznetsov version: $Revision: 1.6.2.2 $ |
Method Summary | |
abstract public int | getType() |
TOK_CHARCLASS | final public static int TOK_CHARCLASS(Code) | | |
TOK_QUANTIFIER | final public static int TOK_QUANTIFIER(Code) | | |
getType | abstract public int getType()(Code) | | Returns the type of the token, may return following values:
TOK_CHARCLASS - token representing character class;
TOK_QUANTIFIER - token representing quantifier;
character type. |
|
|