Uses of Enum
com.alibaba.druid.sql.parser.SQLParserFeature
Packages that use SQLParserFeature
Package
Description
-
Uses of SQLParserFeature in com.alibaba.druid.sql
Methods in com.alibaba.druid.sql with parameters of type SQLParserFeatureModifier and TypeMethodDescriptionstatic StringSQLUtils.format(String sql, DbType dbType, List<Object> parameters, SQLUtils.FormatOption option, SQLParserFeature[] features) static SQLStatementSQLUtils.parseSingleStatement(String sql, DbType dbType, SQLParserFeature... features) static SQLStatementSQLUtils.parseSingleStatement(String sql, String dbType, SQLParserFeature... features) static List<SQLStatement>SQLUtils.parseStatements(String sql, DbType dbType, SQLParserFeature... features) static List<SQLStatement>SQLUtils.parseStatements(String sql, String dbType, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.ads.parser
Constructors in com.alibaba.druid.sql.dialect.ads.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionAdsExprParser(String sql, SQLParserFeature... features) AdsLexer(String input, SQLParserFeature... features) AdsStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.blink.parser
Constructors in com.alibaba.druid.sql.dialect.blink.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionBlinkExprParser(String sql, SQLParserFeature... features) BlinkLexer(String input, SQLParserFeature... features) BlinkStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.clickhouse.parser
Constructors in com.alibaba.druid.sql.dialect.clickhouse.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionClickhouseExprParser(String sql, SQLParserFeature... features) ClickhouseLexer(String input, SQLParserFeature... features) ClickhouseStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.db2.parser
Constructors in com.alibaba.druid.sql.dialect.db2.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionDB2ExprParser(String sql, SQLParserFeature... features) DB2Lexer(String input, SQLParserFeature... features) DB2StatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.h2.parser
Constructors in com.alibaba.druid.sql.dialect.h2.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionH2ExprParser(String sql, SQLParserFeature... features) H2Lexer(String input, SQLParserFeature... features) H2StatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.hive.parser
Constructors in com.alibaba.druid.sql.dialect.hive.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionHiveExprParser(String sql, SQLParserFeature... features) HiveLexer(String input, SQLParserFeature... features) HiveStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.mysql.parser
Constructors in com.alibaba.druid.sql.dialect.mysql.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionMySqlExprParser(String sql, SQLParserFeature... features) MySqlLexer(String input, SQLParserFeature... features) MySqlStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.odps.parser
Constructors in com.alibaba.druid.sql.dialect.odps.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionOdpsExprParser(String sql, SQLParserFeature... features) OdpsLexer(String input, SQLParserFeature... features) OdpsStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.oracle.parser
Constructors in com.alibaba.druid.sql.dialect.oracle.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionOracleExprParser(String text, SQLParserFeature... features) OracleLexer(String input, SQLParserFeature... features) OracleStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.oscar.parser
Constructors in com.alibaba.druid.sql.dialect.oscar.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionOscarExprParser(String sql, SQLParserFeature... features) OscarLexer(String input, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.oscar.visitor
Constructors in com.alibaba.druid.sql.dialect.oscar.visitor with parameters of type SQLParserFeature -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.phoenix.parser
Constructors in com.alibaba.druid.sql.dialect.phoenix.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionPhoenixExprParser(String sql, SQLParserFeature... features) PhoenixLexer(String input, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.postgresql.parser
Constructors in com.alibaba.druid.sql.dialect.postgresql.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionPGExprParser(String sql, SQLParserFeature... features) PGLexer(String input, SQLParserFeature... features) PGSQLStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.presto.parser
Constructors in com.alibaba.druid.sql.dialect.presto.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionPrestoExprParser(String sql, SQLParserFeature... features) PrestoLexer(String input, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.dialect.sqlserver.parser
Constructors in com.alibaba.druid.sql.dialect.sqlserver.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionSQLServerExprParser(String sql, SQLParserFeature... features) SQLServerLexer(String input, SQLParserFeature... features) SQLServerStatementParser(String sql, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.parser
Methods in com.alibaba.druid.sql.parser that return SQLParserFeatureModifier and TypeMethodDescriptionstatic SQLParserFeatureReturns the enum constant of this type with the specified name.static SQLParserFeature[]SQLParserFeature.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.alibaba.druid.sql.parser with parameters of type SQLParserFeatureModifier and TypeMethodDescriptionvoidLexer.config(SQLParserFeature feature, boolean state) voidSQLParser.config(SQLParserFeature feature, boolean state) static intSQLParserFeature.config(int features, SQLParserFeature feature, boolean state) static SQLExprParserSQLParserUtils.createExprParser(String sql, DbType dbType, SQLParserFeature... features) static LexerSQLParserUtils.createLexer(String sql, DbType dbType, SQLParserFeature... features) static SQLStatementParserSQLParserUtils.createSQLStatementParser(String sql, DbType dbType, SQLParserFeature... features) static SQLStatementParserSQLParserUtils.createSQLStatementParser(String sql, String dbType, SQLParserFeature... features) final booleanLexer.isEnabled(SQLParserFeature feature) final booleanSQLParser.isEnabled(SQLParserFeature feature) static booleanSQLParserFeature.isEnabled(int features, SQLParserFeature feature) static intSQLParserFeature.of(SQLParserFeature... features) Constructors in com.alibaba.druid.sql.parser with parameters of type SQLParserFeatureModifierConstructorDescriptionSQLExprParser(String sql, DbType dbType, SQLParserFeature... features) SQLParser(String sql, DbType dbType, SQLParserFeature... features) -
Uses of SQLParserFeature in com.alibaba.druid.sql.visitor
Methods in com.alibaba.druid.sql.visitor with parameters of type SQLParserFeatureModifier and TypeMethodDescriptionstatic StringParameterizedOutputVisitorUtils.parameterize(String sql, DbType dbType, SQLSelectListCache selectListCache, List<Object> outParameters, SQLParserFeature[] features, VisitorFeature... visitorFeatures)