
rapture.generated.SRapGenLexer Maven / Gradle / Ivy
// $ANTLR 3.5.2 /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g 2016-03-01 15:52:38
package rapture.generated;
import org.antlr.runtime.*;
import java.util.Stack;
import java.util.List;
import java.util.ArrayList;
@SuppressWarnings("all")
public class SRapGenLexer extends Lexer {
public static final int EOF=-1;
public static final int CASSANDRA=4;
public static final int COMMA=5;
public static final int CSV=6;
public static final int EQUALS=7;
public static final int FILE=8;
public static final int ID=9;
public static final int LBRACE=10;
public static final int MEMORY=11;
public static final int MONGO=12;
public static final int RBRACE=13;
public static final int SREP=14;
public static final int STRING=15;
public static final int USING=16;
public static final int WITH=17;
public static final int WS=18;
// delegates
// delegators
public Lexer[] getDelegates() {
return new Lexer[] {};
}
public SRapGenLexer() {}
public SRapGenLexer(CharStream input) {
this(input, new RecognizerSharedState());
}
public SRapGenLexer(CharStream input, RecognizerSharedState state) {
super(input,state);
}
@Override public String getGrammarFileName() { return "/Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g"; }
// $ANTLR start "MEMORY"
public final void mMEMORY() throws RecognitionException {
try {
int _type = MEMORY;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:18:8: ( 'MEMORY' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:18:10: 'MEMORY'
{
match("MEMORY");
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "MEMORY"
// $ANTLR start "FILE"
public final void mFILE() throws RecognitionException {
try {
int _type = FILE;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:19:6: ( 'FILE' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:19:8: 'FILE'
{
match("FILE");
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "FILE"
// $ANTLR start "CASSANDRA"
public final void mCASSANDRA() throws RecognitionException {
try {
int _type = CASSANDRA;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:20:11: ( 'CASSANDRA' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:20:13: 'CASSANDRA'
{
match("CASSANDRA");
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "CASSANDRA"
// $ANTLR start "MONGO"
public final void mMONGO() throws RecognitionException {
try {
int _type = MONGO;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:21:6: ( 'MONGODB' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:21:8: 'MONGODB'
{
match("MONGODB");
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "MONGO"
// $ANTLR start "CSV"
public final void mCSV() throws RecognitionException {
try {
int _type = CSV;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:22:4: ( 'CSV' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:22:6: 'CSV'
{
match("CSV");
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "CSV"
// $ANTLR start "SREP"
public final void mSREP() throws RecognitionException {
try {
int _type = SREP;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:24:6: ( 'SREP' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:24:8: 'SREP'
{
match("SREP");
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "SREP"
// $ANTLR start "LBRACE"
public final void mLBRACE() throws RecognitionException {
try {
int _type = LBRACE;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:26:8: ( '{' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:26:10: '{'
{
match('{');
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "LBRACE"
// $ANTLR start "RBRACE"
public final void mRBRACE() throws RecognitionException {
try {
int _type = RBRACE;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:27:8: ( '}' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:27:10: '}'
{
match('}');
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "RBRACE"
// $ANTLR start "COMMA"
public final void mCOMMA() throws RecognitionException {
try {
int _type = COMMA;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:28:7: ( ',' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:28:9: ','
{
match(',');
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "COMMA"
// $ANTLR start "EQUALS"
public final void mEQUALS() throws RecognitionException {
try {
int _type = EQUALS;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:29:8: ( '=' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:29:10: '='
{
match('=');
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "EQUALS"
// $ANTLR start "USING"
public final void mUSING() throws RecognitionException {
try {
int _type = USING;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:30:7: ( 'using' | 'USING' )
int alt1=2;
int LA1_0 = input.LA(1);
if ( (LA1_0=='u') ) {
alt1=1;
}
else if ( (LA1_0=='U') ) {
alt1=2;
}
else {
NoViableAltException nvae =
new NoViableAltException("", 1, 0, input);
throw nvae;
}
switch (alt1) {
case 1 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:30:9: 'using'
{
match("using");
}
break;
case 2 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:30:19: 'USING'
{
match("USING");
}
break;
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "USING"
// $ANTLR start "WITH"
public final void mWITH() throws RecognitionException {
try {
int _type = WITH;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:31:6: ( 'with' | 'WITH' )
int alt2=2;
int LA2_0 = input.LA(1);
if ( (LA2_0=='w') ) {
alt2=1;
}
else if ( (LA2_0=='W') ) {
alt2=2;
}
else {
NoViableAltException nvae =
new NoViableAltException("", 2, 0, input);
throw nvae;
}
switch (alt2) {
case 1 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:31:8: 'with'
{
match("with");
}
break;
case 2 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:31:17: 'WITH'
{
match("WITH");
}
break;
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "WITH"
// $ANTLR start "ID"
public final void mID() throws RecognitionException {
try {
int _type = ID;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:33:4: ( ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )* )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:33:6: ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )*
{
if ( (input.LA(1) >= 'A' && input.LA(1) <= 'Z')||input.LA(1)=='_'||(input.LA(1) >= 'a' && input.LA(1) <= 'z') ) {
input.consume();
}
else {
MismatchedSetException mse = new MismatchedSetException(null,input);
recover(mse);
throw mse;
}
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:33:30: ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )*
loop3:
while (true) {
int alt3=2;
int LA3_0 = input.LA(1);
if ( ((LA3_0 >= '0' && LA3_0 <= '9')||(LA3_0 >= 'A' && LA3_0 <= 'Z')||LA3_0=='_'||(LA3_0 >= 'a' && LA3_0 <= 'z')) ) {
alt3=1;
}
switch (alt3) {
case 1 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:
{
if ( (input.LA(1) >= '0' && input.LA(1) <= '9')||(input.LA(1) >= 'A' && input.LA(1) <= 'Z')||input.LA(1)=='_'||(input.LA(1) >= 'a' && input.LA(1) <= 'z') ) {
input.consume();
}
else {
MismatchedSetException mse = new MismatchedSetException(null,input);
recover(mse);
throw mse;
}
}
break;
default :
break loop3;
}
}
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "ID"
// $ANTLR start "STRING"
public final void mSTRING() throws RecognitionException {
try {
int _type = STRING;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:34:8: ( '\"' (~ '\"' )* '\"' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:34:10: '\"' (~ '\"' )* '\"'
{
match('\"');
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:34:14: (~ '\"' )*
loop4:
while (true) {
int alt4=2;
int LA4_0 = input.LA(1);
if ( ((LA4_0 >= '\u0000' && LA4_0 <= '!')||(LA4_0 >= '#' && LA4_0 <= '\uFFFF')) ) {
alt4=1;
}
switch (alt4) {
case 1 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:
{
if ( (input.LA(1) >= '\u0000' && input.LA(1) <= '!')||(input.LA(1) >= '#' && input.LA(1) <= '\uFFFF') ) {
input.consume();
}
else {
MismatchedSetException mse = new MismatchedSetException(null,input);
recover(mse);
throw mse;
}
}
break;
default :
break loop4;
}
}
match('\"');
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "STRING"
// $ANTLR start "WS"
public final void mWS() throws RecognitionException {
try {
int _type = WS;
int _channel = DEFAULT_TOKEN_CHANNEL;
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:36:4: ( ( ' ' ) )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:36:6: ( ' ' )
{
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:36:6: ( ' ' )
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:36:7: ' '
{
match(' ');
}
_channel=HIDDEN;
}
state.type = _type;
state.channel = _channel;
}
finally {
// do for sure before leaving
}
}
// $ANTLR end "WS"
@Override
public void mTokens() throws RecognitionException {
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:8: ( MEMORY | FILE | CASSANDRA | MONGO | CSV | SREP | LBRACE | RBRACE | COMMA | EQUALS | USING | WITH | ID | STRING | WS )
int alt5=15;
alt5 = dfa5.predict(input);
switch (alt5) {
case 1 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:10: MEMORY
{
mMEMORY();
}
break;
case 2 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:17: FILE
{
mFILE();
}
break;
case 3 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:22: CASSANDRA
{
mCASSANDRA();
}
break;
case 4 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:32: MONGO
{
mMONGO();
}
break;
case 5 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:38: CSV
{
mCSV();
}
break;
case 6 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:42: SREP
{
mSREP();
}
break;
case 7 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:47: LBRACE
{
mLBRACE();
}
break;
case 8 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:54: RBRACE
{
mRBRACE();
}
break;
case 9 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:61: COMMA
{
mCOMMA();
}
break;
case 10 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:67: EQUALS
{
mEQUALS();
}
break;
case 11 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:74: USING
{
mUSING();
}
break;
case 12 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:80: WITH
{
mWITH();
}
break;
case 13 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:85: ID
{
mID();
}
break;
case 14 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:88: STRING
{
mSTRING();
}
break;
case 15 :
// /Users/amkimian/Development/cloud/Rapture/Libs/RaptureCore/src/main/antlr3/rapture/dsl/sergen/SRapGenLexer.g:1:95: WS
{
mWS();
}
break;
}
}
protected DFA5 dfa5 = new DFA5(this);
static final String DFA5_eotS =
"\1\uffff\4\15\4\uffff\4\15\3\uffff\16\15\1\50\7\15\1\60\1\15\1\uffff\1"+
"\62\2\15\2\65\2\15\1\uffff\1\15\1\uffff\2\71\1\uffff\1\72\2\15\2\uffff"+
"\1\75\1\15\1\uffff\1\15\1\100\1\uffff";
static final String DFA5_eofS =
"\101\uffff";
static final String DFA5_minS =
"\1\40\1\105\1\111\1\101\1\122\4\uffff\1\163\1\123\1\151\1\111\3\uffff"+
"\1\115\1\116\1\114\1\123\1\126\1\105\1\151\1\111\1\164\1\124\1\117\1\107"+
"\1\105\1\123\1\60\1\120\1\156\1\116\1\150\1\110\1\122\1\117\1\60\1\101"+
"\1\uffff\1\60\1\147\1\107\2\60\1\131\1\104\1\uffff\1\116\1\uffff\2\60"+
"\1\uffff\1\60\1\102\1\104\2\uffff\1\60\1\122\1\uffff\1\101\1\60\1\uffff";
static final String DFA5_maxS =
"\1\175\1\117\1\111\1\123\1\122\4\uffff\1\163\1\123\1\151\1\111\3\uffff"+
"\1\115\1\116\1\114\1\123\1\126\1\105\1\151\1\111\1\164\1\124\1\117\1\107"+
"\1\105\1\123\1\172\1\120\1\156\1\116\1\150\1\110\1\122\1\117\1\172\1\101"+
"\1\uffff\1\172\1\147\1\107\2\172\1\131\1\104\1\uffff\1\116\1\uffff\2\172"+
"\1\uffff\1\172\1\102\1\104\2\uffff\1\172\1\122\1\uffff\1\101\1\172\1\uffff";
static final String DFA5_acceptS =
"\5\uffff\1\7\1\10\1\11\1\12\4\uffff\1\15\1\16\1\17\30\uffff\1\5\7\uffff"+
"\1\2\1\uffff\1\6\2\uffff\1\14\3\uffff\1\13\1\1\2\uffff\1\4\2\uffff\1\3";
static final String DFA5_specialS =
"\101\uffff}>";
static final String[] DFA5_transitionS = {
"\1\17\1\uffff\1\16\11\uffff\1\7\20\uffff\1\10\3\uffff\2\15\1\3\2\15\1"+
"\2\6\15\1\1\5\15\1\4\1\15\1\12\1\15\1\14\3\15\4\uffff\1\15\1\uffff\24"+
"\15\1\11\1\15\1\13\3\15\1\5\1\uffff\1\6",
"\1\20\11\uffff\1\21",
"\1\22",
"\1\23\21\uffff\1\24",
"\1\25",
"",
"",
"",
"",
"\1\26",
"\1\27",
"\1\30",
"\1\31",
"",
"",
"",
"\1\32",
"\1\33",
"\1\34",
"\1\35",
"\1\36",
"\1\37",
"\1\40",
"\1\41",
"\1\42",
"\1\43",
"\1\44",
"\1\45",
"\1\46",
"\1\47",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\1\51",
"\1\52",
"\1\53",
"\1\54",
"\1\55",
"\1\56",
"\1\57",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\1\61",
"",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\1\63",
"\1\64",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\1\66",
"\1\67",
"",
"\1\70",
"",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\1\73",
"\1\74",
"",
"",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
"\1\76",
"",
"\1\77",
"\12\15\7\uffff\32\15\4\uffff\1\15\1\uffff\32\15",
""
};
static final short[] DFA5_eot = DFA.unpackEncodedString(DFA5_eotS);
static final short[] DFA5_eof = DFA.unpackEncodedString(DFA5_eofS);
static final char[] DFA5_min = DFA.unpackEncodedStringToUnsignedChars(DFA5_minS);
static final char[] DFA5_max = DFA.unpackEncodedStringToUnsignedChars(DFA5_maxS);
static final short[] DFA5_accept = DFA.unpackEncodedString(DFA5_acceptS);
static final short[] DFA5_special = DFA.unpackEncodedString(DFA5_specialS);
static final short[][] DFA5_transition;
static {
int numStates = DFA5_transitionS.length;
DFA5_transition = new short[numStates][];
for (int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy