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 SqlFeatureSqlFeature. 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 StringSqlRuntimeContext. getFeature(SqlFeature feature)Convenient method to obtain a String feature based on the name.StringSqlRuntimeContext. getFeature(SqlFeature feature, String specName)Convenient method to obtain a String feature based on the name.IntegerSqlRuntimeContext. getFeatureAsInt(SqlFeature feature)Convenient method to obtain an Integer feature based on the name.ObjectSqlRuntimeContext. 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 SqlFeature Modifier and Type Field Description static Map<SqlFeature,Object>SqlDefaultFeatures. FEATURESstatic Map<String,Map<SqlFeature,Object>>SqlDefaultFeatures. FILTERED_FEATURESMethods in org.sqlproc.engine.impl with parameters of type SqlFeature Modifier and Type Method Description StringSqlProcessContext. getFeature(SqlFeature feature)Convenient method to obtain a String feature based on the name.StringSqlProcessContext. getFeature(SqlFeature feature, String specName)Convenient method to obtain a String feature based on the name.IntegerSqlProcessContext. getFeatureAsInt(SqlFeature feature)Convenient method to obtain an Integer feature based on the name.ObjectSqlProcessContext. 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.
-