|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.businessobjects.rebean.wi.Feature
com.businessobjects.rebean.wi.QueryFeature
public class QueryFeature
Warning: This class is no longer functional from the SAP BusinessObjects 4.0 release onwards.
TheQueryFeature
class defines the set of features provided by an inherited
Query
object.
Example:Check whether the data provider supports CREATE_ADVANCED_CONDITION feature
DataProvider dp = wiDoc.getDataProviders().getItem(0);
out.print(dp.isSupported(QueryFeature.CREATE_ADVANCED_CONDITION));
DataProviderFeature
,
DataProvider.isSupported(Feature)
,
ConditionOperatorFeature
,
Serialized FormField Summary | |
---|---|
static QueryFeature |
ADD_QUERYSORT
Permission to add QuerySort on a query. |
static QueryFeature |
CREATE_ADVANCED_CONDITION
Permission for Query to create a advanced condition part. |
static QueryFeature |
CREATE_CONDITION_OBJECT_VALUE
Permission for Query to create in condition part a condition object as value. |
static QueryFeature |
CREATE_PERCENTAGE_RANK
Permission for Query to create a RankCondition with percentage. |
static QueryFeature |
CREATE_RANK_CONDITION
Permission for Query to create a RankCondition. |
static QueryFeature |
QUERYSORT_ON_ANY_OBJECT
Capability of add QuerySort on any DS object. |
Method Summary | |
---|---|
java.lang.String |
toString()
Gets the String value of QueryFeature |
Methods inherited from class com.businessobjects.rebean.wi.Feature |
---|
implies |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final QueryFeature CREATE_ADVANCED_CONDITION
Note when CREATE_ADVANCED_CONDITION is enable, you can use
ConditionContainer.createAdvancedCondition(DataSourceObject[],
ConditionOperator, ComparisonOperator , DataSourceObject[])
,
ConditionContainer.copyAdvancedCondition(AdvancedCondition)
public static final QueryFeature CREATE_CONDITION_OBJECT_VALUE
Note when CREATE_CONDITION_OBJECT_VALUE is enable, you can call
FilterCondition.createConditionObjectValue(DataSourceObject)
public static final QueryFeature CREATE_RANK_CONDITION
Note when CREATE_RANK_CONDITION is enable, you can call
ConditionContainer.createRankCondition(Podium, int, DataSourceObject, DataSourceObject)
and ConditionContainer.copyRankCondition(RankCondition)
.
public static final QueryFeature CREATE_PERCENTAGE_RANK
Note when CREATE_PERCENTAGE_RANK is enable, you can use
Podium.BOTTOM_PERCENTAGE
and Podium.TOP_PERCENTAGE
in
RankCondition.
public static final QueryFeature QUERYSORT_ON_ANY_OBJECT
public static final QueryFeature ADD_QUERYSORT
Method Detail |
---|
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |