/*******************************************************************************
* Copyright © 2008, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*
*******************************************************************************/
/* Generated By:JavaCC: Do not edit this line. JsonParserConstants.java */
package org.eclipse.edt.javart.json;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface JsonParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int NUMBER = 5;
/** RegularExpression Id. */
int STRING = 6;
/** RegularExpression Id. */
int TRUE = 7;
/** RegularExpression Id. */
int FALSE = 8;
/** RegularExpression Id. */
int NULL = 9;
/** Lexical state. */
int DEFAULT = 0;
/** Literal token values. */
String[] tokenImage = {
"<EOF>",
"\" \"",
"\"\\t\"",
"\"\\n\"",
"\"\\r\"",
"<NUMBER>",
"<STRING>",
"\"true\"",
"\"false\"",
"\"null\"",
"\"{\"",
"\",\"",
"\"}\"",
"\":\"",
"\"[\"",
"\"]\"",
};
}