Uses of Class
org.sqlproc.engine.SqlFeature
-
Packages that use SqlFeature 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. -
-
Uses of SqlFeature in org.sqlproc.engine
Methods in org.sqlproc.engine that return SqlFeature Modifier and Type Method Description static SqlFeature
SqlFeature. valueOf(String name)
Returns the enum constant of this type with the specified name.static SqlFeature[]
SqlFeature. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.sqlproc.engine with parameters of type SqlFeature Modifier and Type Method Description String
SqlRuntimeContext. getFeature(SqlFeature feature)
Convenient method to obtain a String feature based on the name.String
SqlRuntimeContext. getFeature(SqlFeature feature, String specName)
Convenient method to obtain a String feature based on the name.Integer
SqlRuntimeContext. getFeatureAsInt(SqlFeature feature)
Convenient method to obtain an Integer feature based on the name.Object
SqlRuntimeContext. getFeatureAsObject(SqlFeature feature)
Convenient method to obtain an Object feature based on the name.boolean
SqlRuntimeContext. isFeature(SqlFeature feature)
Convenient method to obtain a boolean feature based on the name.void
SqlDefaultFactory. 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 SqlFeature Modifier and Type Field Description static Map<SqlFeature,Object>
SqlDefaultFeatures. FEATURES
static Map<String,Map<SqlFeature,Object>>
SqlDefaultFeatures. FILTERED_FEATURES
Methods in org.sqlproc.engine.impl with parameters of type SqlFeature Modifier and Type Method Description String
SqlProcessContext. getFeature(SqlFeature feature)
Convenient method to obtain a String feature based on the name.String
SqlProcessContext. getFeature(SqlFeature feature, String specName)
Convenient method to obtain a String feature based on the name.Integer
SqlProcessContext. getFeatureAsInt(SqlFeature feature)
Convenient method to obtain an Integer feature based on the name.Object
SqlProcessContext. getFeatureAsObject(SqlFeature feature)
Convenient method to obtain an Object feature based on the name.protected Object
SqlProcessContext. getRawFeature(SqlFeature feature)
Convenient method to obtain a feature based on the name.boolean
SqlProcessContext. isFeature(SqlFeature feature)
Convenient method to obtain a boolean feature based on the name.
-