Package org.jooq.tools.json
Class Yytoken
- java.lang.Object
-
- org.jooq.tools.json.Yytoken
-
public class Yytoken extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description inttypestatic intTYPE_COLONstatic intTYPE_COMMAstatic intTYPE_EOFstatic intTYPE_LEFT_BRACEstatic intTYPE_LEFT_SQUAREstatic intTYPE_RIGHT_BRACEstatic intTYPE_RIGHT_SQUAREstatic intTYPE_VALUEjava.lang.Objectvalue
-
Constructor Summary
Constructors Constructor Description Yytoken(int type, java.lang.Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
TYPE_VALUE
public static final int TYPE_VALUE
- See Also:
- Constant Field Values
-
TYPE_LEFT_BRACE
public static final int TYPE_LEFT_BRACE
- See Also:
- Constant Field Values
-
TYPE_RIGHT_BRACE
public static final int TYPE_RIGHT_BRACE
- See Also:
- Constant Field Values
-
TYPE_LEFT_SQUARE
public static final int TYPE_LEFT_SQUARE
- See Also:
- Constant Field Values
-
TYPE_RIGHT_SQUARE
public static final int TYPE_RIGHT_SQUARE
- See Also:
- Constant Field Values
-
TYPE_COMMA
public static final int TYPE_COMMA
- See Also:
- Constant Field Values
-
TYPE_COLON
public static final int TYPE_COLON
- See Also:
- Constant Field Values
-
TYPE_EOF
public static final int TYPE_EOF
- See Also:
- Constant Field Values
-
type
public int type
-
value
public java.lang.Object value
-
-