uflconstants.java

来自「High performance DB query」· Java 代码 · 共 91 行

JAVA
91
字号
/* Generated By:JavaCC: Do not edit this line. UFLConstants.java *//* * @(#)$Id: UFLConstants.java,v 1.29 2005/07/18 04:03:36 huebsch Exp $ * * Copyright (c) 2001-2003 Regents of the University of California. * All rights reserved. * * This file is distributed under the terms in the attached BERKELEY-LICENSE * file. If you do not find these files, copies can be found by writing to: * Computer Science Division, Database Group, Universite of California, * 617 Soda Hall #1776, Berkeley, CA 94720-1776. Attention: Berkeley License * * Copyright (c) 2003 Intel Corporation. All rights reserved. * * This file is distributed under the terms in the attached INTEL-LICENSE file. * If you do not find these files, copies can be found by writing to: * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, * Berkeley, CA, 94704.  Attention:  Intel License Inquiry. */package pier.parsers.UFL;public interface UFLConstants {  int EOF = 0;  int OPGRAPHOBJ = 2;  int OPOBJ = 3;  int PREDOBJ = 4;  int END = 5;  int OBJNAMESTART = 6;  int OBJNAMEEND = 7;  int OBJSTART = 8;  int OBJEND = 9;  int KEYARRAYSTART = 10;  int KEYARRAYEND = 11;  int KEYVALDELIM = 12;  int CASTSEP = 13;  int PARAMSEP = 14;  int FIELDREF = 15;  int LITERALTEXT = 16;  int LITERALESCAPE = 17;  int LITERALEND = 18;  int ESCAPEUNICODE = 19;  int ESCAPEQID = 20;  int ESCAPEQTAG = 21;  int ESCAPEQADDR = 22;  int ESCAPESLASH = 23;  int ESCAPEQUOTE = 24;  int ESCAPENEWLINE = 25;  int BASICTEXTCHARS = 26;  int LITERALSTART = 27;  int UNKNOWN = 28;  int DEFAULT = 0;  int LITERALS = 1;  int LITERALESCAPES = 2;  String[] tokenImage = {    "<EOF>",    "<token of kind 1>",    "<OPGRAPHOBJ>",    "\"%operator\"",    "\"%predicate\"",    "\"#\"",    "\"(\"",    "\")\"",    "\"{\"",    "\"}\"",    "\"[\"",    "\"]\"",    "\"=\"",    "\"::\"",    "\",\"",    "\"$\"",    "<LITERALTEXT>",    "\"\\\\\"",    "<LITERALEND>",    "<ESCAPEUNICODE>",    "<ESCAPEQID>",    "<ESCAPEQTAG>",    "<ESCAPEQADDR>",    "<ESCAPESLASH>",    "\"\\\"$\"",    "<ESCAPENEWLINE>",    "<BASICTEXTCHARS>",    "\"\\\"\"",    "<UNKNOWN>",  };}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?