Uses of Enum Class
org.sqlproc.engine.SqlFeature
Packages that use SqlFeature
Package
Description
The public part of the SQL Processor implementation.
The private part of the SQL Processor implementation.
-
Uses of SqlFeature in org.sqlproc.engine
Methods in org.sqlproc.engine that return SqlFeatureModifier and TypeMethodDescriptionstatic SqlFeatureReturns the enum constant of this class with the specified name.static SqlFeature[]SqlFeature.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.sqlproc.engine with parameters of type SqlFeatureModifier and TypeMethodDescriptionSqlRuntimeContext.getFeature(SqlFeature feature) Convenient method to obtain a String feature based on the name.SqlRuntimeContext.getFeature(SqlFeature feature, String specName) Convenient method to obtain a String feature based on the name.SqlRuntimeContext.getFeatureAsInt(SqlFeature feature) Convenient method to obtain an Integer feature based on the name.SqlRuntimeContext.getFeatureAsObject(SqlFeature feature) Convenient method to obtain an Object feature based on the name.booleanSqlRuntimeContext.isFeature(SqlFeature feature) Convenient method to obtain a boolean feature based on the name.voidSqlDefaultFactory.setFilter(SqlFeature filter) Sets the name of the filter to filter the META SQL statements, mapping rules and optional features. -
Uses of SqlFeature in org.sqlproc.engine.impl
Fields in org.sqlproc.engine.impl with type parameters of type SqlFeatureModifier and TypeFieldDescriptionstatic final Map<SqlFeature, Object> SqlDefaultFeatures.FEATURESstatic final Map<String, Map<SqlFeature, Object>> SqlDefaultFeatures.FILTERED_FEATURESMethods in org.sqlproc.engine.impl with parameters of type SqlFeatureModifier and TypeMethodDescriptionSqlProcessContext.getFeature(SqlFeature feature) Convenient method to obtain a String feature based on the name.SqlProcessContext.getFeature(SqlFeature feature, String specName) Convenient method to obtain a String feature based on the name.SqlProcessContext.getFeatureAsInt(SqlFeature feature) Convenient method to obtain an Integer feature based on the name.SqlProcessContext.getFeatureAsObject(SqlFeature feature) Convenient method to obtain an Object feature based on the name.protected ObjectSqlProcessContext.getRawFeature(SqlFeature feature) Convenient method to obtain a feature based on the name.booleanSqlProcessContext.isFeature(SqlFeature feature) Convenient method to obtain a boolean feature based on the name.