Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.memoire.foo
Class FooToken  view FooToken download FooToken.java

java.lang.Object
  extended bycom.memoire.foo.FooToken

public class FooToken
extends java.lang.Object


Field Summary
static int COMMA
           
static int COMMENT
           
static int EXEC
           
static int IDENTIFIER
           
static int INTEGER
           
static int PARLEFT
           
static int PARRIGHT
           
static int PATTERN
           
static int QUOTE
           
static int REAL
           
static int STRING
           
 int type_
           
static int UNKNOWN
           
 java.lang.Object value_
           
 
Constructor Summary
FooToken(int _t, java.lang.Object _v)
           
 
Method Summary
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

UNKNOWN

public static final int UNKNOWN
See Also:
Constant Field Values

COMMENT

public static final int COMMENT
See Also:
Constant Field Values

INTEGER

public static final int INTEGER
See Also:
Constant Field Values

REAL

public static final int REAL
See Also:
Constant Field Values

STRING

public static final int STRING
See Also:
Constant Field Values

PARLEFT

public static final int PARLEFT
See Also:
Constant Field Values

PARRIGHT

public static final int PARRIGHT
See Also:
Constant Field Values

QUOTE

public static final int QUOTE
See Also:
Constant Field Values

COMMA

public static final int COMMA
See Also:
Constant Field Values

IDENTIFIER

public static final int IDENTIFIER
See Also:
Constant Field Values

EXEC

public static final int EXEC
See Also:
Constant Field Values

PATTERN

public static final int PATTERN
See Also:
Constant Field Values

type_

public int type_

value_

public java.lang.Object value_
Constructor Detail

FooToken

public FooToken(int _t,
                java.lang.Object _v)
Method Detail

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).