001/* Generated By:JavaCC: Do not edit this line. ConfParserLegacyConstants.java */
002package org.dllearner.confparser;
003
004
005/**
006 * Token literal values and constants.
007 * Generated by org.javacc.parser.OtherFilesGen#start()
008 */
009public interface ConfParserLegacyConstants {
010
011  /** End of File. */
012  int EOF = 0;
013  /** RegularExpression Id. */
014  int SINGLE_LINE_COMMENT = 5;
015  /** RegularExpression Id. */
016  int FORMAL_COMMENT = 6;
017  /** RegularExpression Id. */
018  int MULTI_LINE_COMMENT = 7;
019  /** RegularExpression Id. */
020  int COMMAND_END = 8;
021  /** RegularExpression Id. */
022  int ID = 9;
023  /** RegularExpression Id. */
024  int NUMBER = 10;
025  /** RegularExpression Id. */
026  int DOUBLE = 11;
027  /** RegularExpression Id. */
028  int STRING = 12;
029
030  /** Lexical state. */
031  int DEFAULT = 0;
032
033  /** Literal token values. */
034  String[] tokenImage = {
035    "<EOF>",
036    "\" \"",
037    "\"\\t\"",
038    "\"\\n\"",
039    "\"\\r\"",
040    "<SINGLE_LINE_COMMENT>",
041    "<FORMAL_COMMENT>",
042    "<MULTI_LINE_COMMENT>",
043    "\".\"",
044    "<ID>",
045    "<NUMBER>",
046    "<DOUBLE>",
047    "<STRING>",
048    "\"=\"",
049    "\"{\"",
050    "\"}\"",
051    "\",\"",
052    "\"-\"",
053    "\"[\"",
054    "\"]\"",
055    "\"(\"",
056    "\")\"",
057    "\":\"",
058  };
059
060}