ExpressionParserTokenTypes.cs :  » Inversion-of-Control-Dependency-Injection » Spring.net » Spring » Expressions » Parser » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Inversion of Control Dependency Injection » Spring.net 
Spring.net » Spring » Expressions » Parser » ExpressionParserTokenTypes.cs
// $ANTLR 2.7.6 (2005-12-22): "Expression.g" -> "ExpressionLexer.cs"$

namespace Spring.Expressions.Parser{
  public class ExpressionParserTokenTypes
  {
    public const int EOF = 1;
    public const int NULL_TREE_LOOKAHEAD = 3;
    public const int EXPR = 4;
    public const int OPERAND = 5;
    public const int FALSE = 6;
    public const int TRUE = 7;
    public const int AND = 8;
    public const int OR = 9;
    public const int XOR = 10;
    public const int IN = 11;
    public const int IS = 12;
    public const int BETWEEN = 13;
    public const int LIKE = 14;
    public const int MATCHES = 15;
    public const int NULL_LITERAL = 16;
    public const int LPAREN = 17;
    public const int SEMI = 18;
    public const int RPAREN = 19;
    public const int ASSIGN = 20;
    public const int DEFAULT = 21;
    public const int QMARK = 22;
    public const int COLON = 23;
    public const int PLUS = 24;
    public const int MINUS = 25;
    public const int STAR = 26;
    public const int DIV = 27;
    public const int MOD = 28;
    public const int POWER = 29;
    public const int BANG = 30;
    public const int DOT = 31;
    public const int POUND = 32;
    public const int ID = 33;
    public const int DOLLAR = 34;
    public const int COMMA = 35;
    public const int AT = 36;
    public const int LBRACKET = 37;
    public const int RBRACKET = 38;
    public const int PROJECT = 39;
    public const int RCURLY = 40;
    public const int SELECT = 41;
    public const int SELECT_FIRST = 42;
    public const int SELECT_LAST = 43;
    public const int TYPE = 44;
    public const int QUOTE = 45;
    public const int STRING_LITERAL = 46;
    public const int LAMBDA = 47;
    public const int PIPE = 48;
    public const int LITERAL_new = 49;
    public const int LCURLY = 50;
    public const int INTEGER_LITERAL = 51;
    public const int HEXADECIMAL_INTEGER_LITERAL = 52;
    public const int REAL_LITERAL = 53;
    public const int EQUAL = 54;
    public const int NOT_EQUAL = 55;
    public const int LESS_THAN = 56;
    public const int LESS_THAN_OR_EQUAL = 57;
    public const int GREATER_THAN = 58;
    public const int GREATER_THAN_OR_EQUAL = 59;
    public const int WS = 60;
    public const int BACKTICK = 61;
    public const int BACKSLASH = 62;
    public const int DOT_ESCAPED = 63;
    public const int APOS = 64;
    public const int NUMERIC_LITERAL = 65;
    public const int DECIMAL_DIGIT = 66;
    public const int INTEGER_TYPE_SUFFIX = 67;
    public const int HEX_DIGIT = 68;
    public const int EXPONENT_PART = 69;
    public const int SIGN = 70;
    public const int REAL_TYPE_SUFFIX = 71;
    
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.