jfun.parsec.tokens
Class TokenStringLiteral

java.lang.Object
  extended by jfun.parsec.tokens.TokenStringLiteral
All Implemented Interfaces:
java.io.Serializable

Deprecated.

@Deprecated
public class TokenStringLiteral
extends java.lang.Object
implements java.io.Serializable

This Token represents a string literal.

Author:
Ben Yu 2004-11-7
See Also:
Serialized Form

Method Summary
static Tokenizer getDoubleQuoteTokenizer()
          Deprecated. creates a Tokenizer instance() that parsers a double quoted string literal that is possiblly escaped by '\'
static Tokenizer getSqlTokenizer()
          Deprecated. creates a Tokenizer instance() that parsers a single quoted string literal.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getDoubleQuoteTokenizer

public static Tokenizer getDoubleQuoteTokenizer()
Deprecated. 
creates a Tokenizer instance() that parsers a double quoted string literal that is possiblly escaped by '\'

Returns:
the tokenizer instance.

getSqlTokenizer

public static Tokenizer getSqlTokenizer()
Deprecated. 
creates a Tokenizer instance() that parsers a single quoted string literal. two single quotes represents a single quote.

Returns:
the tokenizer instance.