jfun.parsec.tokens
Class TokenLong

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

Deprecated.

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

The token that represents an integer that is within 64 bits. For bigger integer, use TokenDecimal instead.

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

Method Summary
static Tokenizer getDecTokenizer()
          Deprecated. creates a Tokenizer instance that can parse a decimal integer string.
static Tokenizer getHexTokenizer()
          Deprecated. creates a Tokenizer instance that can parse a hex integer string.
static Tokenizer getOctTokenizer()
          Deprecated. creates a Tokenizer instance that can parse a octal integer string.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getDecTokenizer

public static Tokenizer getDecTokenizer()
Deprecated. 
creates a Tokenizer instance that can parse a decimal integer string.

Returns:
the Tokenizer instance.

getOctTokenizer

public static Tokenizer getOctTokenizer()
Deprecated. 
creates a Tokenizer instance that can parse a octal integer string.

Returns:
the Tokenizer instance.

getHexTokenizer

public static Tokenizer getHexTokenizer()
Deprecated. 
creates a Tokenizer instance that can parse a hex integer string.

Returns:
the Tokenizer instance.