Package | Description |
---|---|
org.sqlproc.engine |
The public part of the SQL Processor implementation.
|
org.sqlproc.engine.impl |
The private part of the SQL Processor implementation.
|
Modifier and Type | Field and Description |
---|---|
private List<ErrorMsg> |
SqlEngineException.errors
The list of parsing errors.
|
Constructor and Description |
---|
SqlEngineException(String msg,
List<ErrorMsg> lexerErrors,
List<ErrorMsg> parserErrors)
Creates a new instance of the exception in the process of lexer and parser processing.
|
SqlEngineException(String msg,
List<ErrorMsg> lexerErrors,
List<ErrorMsg> parserErrors)
Creates a new instance of the exception in the process of lexer and parser processing.
|
SqlEngineException(String msg,
List<ErrorMsg> lexerErrors,
List<ErrorMsg> parserErrors,
List<ErrorMsg> processorErrors)
Creates a new instance of the exception in the process of lexer and parser processing.
|
SqlEngineException(String msg,
List<ErrorMsg> lexerErrors,
List<ErrorMsg> parserErrors,
List<ErrorMsg> processorErrors)
Creates a new instance of the exception in the process of lexer and parser processing.
|
SqlEngineException(String msg,
List<ErrorMsg> lexerErrors,
List<ErrorMsg> parserErrors,
List<ErrorMsg> processorErrors)
Creates a new instance of the exception in the process of lexer and parser processing.
|
Modifier and Type | Field and Description |
---|---|
private List<ErrorMsg> |
SqlProcessorLazyParser.errors |
private List<ErrorMsg> |
SqlProcessorParser.errors |
private List<ErrorMsg> |
SqlProcessorLazyLexer.errors |
private List<ErrorMsg> |
SqlProcessorLexer.errors |
private List<ErrorMsg> |
SqlProcessor.errors
The list of all errors.
|
Modifier and Type | Method and Description |
---|---|
static ErrorMsg |
ParserUtils.create(String name,
org.antlr.runtime.RecognitionException ex,
String[] tokenNames) |
static ErrorMsg |
ParserUtils.create(String name,
String msg,
org.antlr.runtime.RecognitionException ex,
String[] tokenNames) |
Modifier and Type | Method and Description |
---|---|
List<ErrorMsg> |
SqlProcessorLazyParser.getErrors() |
List<ErrorMsg> |
SqlProcessorParser.getErrors() |
List<ErrorMsg> |
SqlProcessorLazyLexer.getErrors() |
List<ErrorMsg> |
SqlProcessorLexer.getErrors() |
List<ErrorMsg> |
SqlProcessor.getErrors()
Returns the list of error, which can happen in the process of this instance creation and ALTLR parsing
|
(package private) List<ErrorMsg> |
SqlProcessorLazyParser.getPartialErrors() |
(package private) List<ErrorMsg> |
SqlProcessorParser.getPartialErrors() |
Modifier and Type | Method and Description |
---|---|
boolean |
SqlProcessor.addFeature(String type,
String name,
String feature,
List<ErrorMsg> errors,
List<String> activeFilters,
String... filters)
Adds a new optional feature.
|
boolean |
SqlProcessor.addMappingRule(String type,
String name,
String raw,
SqlMappingRule mapping,
List<ErrorMsg> errors,
List<String> activeFilters,
String... filters)
Adds a new output value mapping.
|
(package private) boolean |
SqlProcessor.addMetaStatement(String type,
String name,
String raw,
SqlMetaStatement statement,
List<ErrorMsg> errors,
List<String> activeFilters,
String... filters)
Adds a new META SQL statement.
|
protected void |
SqlProcessor.addWarnings(List<ErrorMsg> errors)
Adds all parsing errors as warnings.
|
Copyright © 2016. All rights reserved.