All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.configuration2.plist.PropertyListParserConstants Maven / Gradle / Ivy

Go to download

Tools to assist in the reading of configuration/preferences files in various formats

There is a newer version: 2.10.1
Show newest version
/* Generated By:JavaCC: Do not edit this line. PropertyListParserConstants.java */
package org.apache.commons.configuration2.plist;


/**
 * Token literal values and constants.
 * Generated by org.javacc.parser.OtherFilesGen#start()
 */
public interface PropertyListParserConstants {

  /** End of File. */
  int EOF = 0;
  /** RegularExpression Id. */
  int SINGLE_LINE_COMMENT = 9;
  /** RegularExpression Id. */
  int ARRAY_BEGIN = 11;
  /** RegularExpression Id. */
  int ARRAY_END = 12;
  /** RegularExpression Id. */
  int ARRAY_SEPARATOR = 13;
  /** RegularExpression Id. */
  int DICT_BEGIN = 14;
  /** RegularExpression Id. */
  int DICT_END = 15;
  /** RegularExpression Id. */
  int DICT_SEPARATOR = 16;
  /** RegularExpression Id. */
  int EQUAL = 17;
  /** RegularExpression Id. */
  int DATA_START = 18;
  /** RegularExpression Id. */
  int DATA_END = 19;
  /** RegularExpression Id. */
  int DATE_START = 20;
  /** RegularExpression Id. */
  int QUOTE = 21;
  /** RegularExpression Id. */
  int LETTER = 22;
  /** RegularExpression Id. */
  int WHITE = 23;
  /** RegularExpression Id. */
  int HEXA = 24;
  /** RegularExpression Id. */
  int DATA = 25;
  /** RegularExpression Id. */
  int DATE = 26;
  /** RegularExpression Id. */
  int STRING = 27;
  /** RegularExpression Id. */
  int QUOTED_STRING = 28;
  /** RegularExpression Id. */
  int ESCAPED_QUOTE = 29;

  /** Lexical state. */
  int DEFAULT = 0;
  /** Lexical state. */
  int IN_COMMENT = 1;
  /** Lexical state. */
  int IN_SINGLE_LINE_COMMENT = 2;

  /** Literal token values. */
  String[] tokenImage = {
    "",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "\"/*\"",
    "",
    "\"*/\"",
    "\"//\"",
    "",
    "",
    "\"(\"",
    "\")\"",
    "\",\"",
    "\"{\"",
    "\"}\"",
    "\";\"",
    "\"=\"",
    "\"<\"",
    "\">\"",
    "\"<*D\"",
    "\"\\\"\"",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "\"\\\\\\\"\"",
  };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy