|
| Query |
|
| |||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||||||
| Packages that use CascadableFilter | |
|---|---|
| com.sas.iquery.metadata.business | The main package that provides modeling for SAS Query Services's two business models (information maps and data selections), which provide a logical layer of metadata modeling above the physical layer model. |
| com.sas.iquery.metadata.expr | Provides classes that are used to model expressions, which are used to compose data items and filters. |
| com.sas.iquery.metadata.expr.relational | Provides classes that are used to model relational database expressions which are typically used when defining the expression portion of filters. |
| Uses of CascadableFilter in com.sas.iquery.metadata.business |
|---|
| Subinterfaces of CascadableFilter in com.sas.iquery.metadata.business | |
|---|---|
interface |
CompoundFilter
Specifies a filter that is defined in terms of other separately defined filters. |
interface |
FilterItem
Contains a single conditional expression which is used to filter data when running a query and typically yields a result set containing less data. |
| Methods in com.sas.iquery.metadata.business that return CascadableFilter | |
|---|---|
abstract CascadableFilter |
FilterCascadeInterface.getDependentFilter()
Returns the dependent cascadable filter |
| Methods in com.sas.iquery.metadata.business that return types with arguments of type CascadableFilter | |
|---|---|
abstract java.util.Collection<CascadableFilter> |
CascadeRule.getDependentFilters()
Returns the collection of dependent CascadableFilter objects for this rule. |
| Methods in com.sas.iquery.metadata.business with parameters of type CascadableFilter | |
|---|---|
abstract boolean |
CascadeRule.containsDependentFilter(CascadableFilter filter)
Returns true if specified CascadableFilter is already contained
in the dependent filters list. |
abstract void |
FilterCascadeInterface.setDependentFilter(CascadableFilter filter)
The cascadable filter that must be applied when generating the values for the business prompt. |
| Uses of CascadableFilter in com.sas.iquery.metadata.expr |
|---|
| Classes in com.sas.iquery.metadata.expr that implement CascadableFilter | |
|---|---|
class |
CompoundConditionalExpression
Models a conditional expression that is made up of one or two sub conditional expressions adjoined by an AND or OR relation, and optionally negated. |
class |
MultipleConditionalExpression
Models a conditional expression that is a combination of one or more Boolean subexpressions. |
| Uses of CascadableFilter in com.sas.iquery.metadata.expr.relational |
|---|
| Classes in com.sas.iquery.metadata.expr.relational that implement CascadableFilter | |
|---|---|
class |
RelationalConditionalExpression
Specifies an abstract class for code that is common to all the relational conditional expressions |
class |
SimpleConditionalExpression_Between
Models the BETWEEN simple conditional expression, which has the following abstract form: <WhatToCompare> [NOT] BETWEEN <LeftExpression> AND <RightExpression> |
class |
SimpleConditionalExpression_Comparison
Models the comparison simple conditional expression, which has the following abstract form: <LeftExpression> <ComparisonOperator> <RightExpression> |
class |
SimpleConditionalExpression_Contains
Models the CONTAINS simple conditional expression, which has the following abstract form: <WhatToCompare> CONTAINS <WhatToContain> |
class |
SimpleConditionalExpression_In
Models the IN simple conditional expression, which has the following abstract form: <WhatToCompare> [NOT] IN (<ComparisonList>) . |
class |
SimpleConditionalExpression_Like
Models the LIKE simple conditional expression, which has the following abstract form: <WhatToCompare> [NOT] LIKE <patternExpression> |
class |
SimpleConditionalExpression_TestForNull
Models the testing for the NULL simple conditional expression, which has the following abstract form: <WhatToCompare> IS [NOT] NULL |
|
| Query |
|
| |||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||||||