public class

Yytoken

extends Object
java.lang.Object
   ↳ com.pnfsoftware.jeb.util.encoding.json.parser.Yytoken

Summary

Constants
int TYPE_COLON
int TYPE_COMMA
int TYPE_EOF
int TYPE_ID
int TYPE_LEFT_BRACE
int TYPE_LEFT_SQUARE
int TYPE_RIGHT_BRACE
int TYPE_RIGHT_SQUARE
int TYPE_VALUE
Fields
public int type
public Object value
Public Constructors
Yytoken(int type, Object value)
Public Methods
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int TYPE_COLON

Constant Value: 6 (0x00000006)

public static final int TYPE_COMMA

Constant Value: 5 (0x00000005)

public static final int TYPE_EOF

Constant Value: -1 (0xffffffff)

public static final int TYPE_ID

Constant Value: 7 (0x00000007)

public static final int TYPE_LEFT_BRACE

Constant Value: 1 (0x00000001)

public static final int TYPE_LEFT_SQUARE

Constant Value: 3 (0x00000003)

public static final int TYPE_RIGHT_BRACE

Constant Value: 2 (0x00000002)

public static final int TYPE_RIGHT_SQUARE

Constant Value: 4 (0x00000004)

public static final int TYPE_VALUE

Constant Value: 0 (0x00000000)

Fields

public int type

public Object value

Public Constructors

public Yytoken (int type, Object value)

Public Methods

public String toString ()