|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JQueryAttribute | |
com.sap.ip.me.api.persist.query | |
com.sap.ip.me.api.smartsync |
Uses of JQueryAttribute in com.sap.ip.me.api.persist.query |
Methods in com.sap.ip.me.api.persist.query that return JQueryAttribute | |
JQueryAttribute[] |
JQueryResultRow.getAttributes()
Get attributes that were selected by this query. |
abstract JQueryAttribute |
JQueryFactory.createAttribute(ClassDescriptor candidateClass,
AttributeDescriptor fieldName)
Create a query attribute. |
abstract JQueryAttribute |
JQueryFactory.createAttribute(ClassDescriptor candidateClass,
AttributeDescriptor fieldName,
java.lang.Object tag)
Create a query attribute. |
abstract JQueryAttribute |
JQueryFactory.createAggregate(JQueryAttribute attr,
AggregationOperatorType aggreg)
Create an aggregate on the query attribute. |
Methods in com.sap.ip.me.api.persist.query with parameters of type JQueryAttribute | |
java.lang.Object |
JQueryResultRow.get(JQueryAttribute attr)
Get result attribute based on attribute descriptor used when creating the query. |
void |
JQueryResultBuilder.startProcessing(JQueryAttribute[] selectAttributes)
Start processing of the query. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond)
Create query based on specified attributes and condition. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
JQuerySortOrder[] sortOrders)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
JQuerySortOrder sortOrder)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
JQuerySortOrder[] sortOrders,
JQueryGroupBy groupBy)
Create sorted and grouped query based on specified attributes and condition. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct)
Create query based on specified attributes and condition. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct,
JQuerySortOrder[] sortOrders)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct,
JQuerySortOrder sortOrder)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
JQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct,
JQuerySortOrder[] sortOrders,
JQueryGroupBy groupBy)
Create sorted and grouped query based on specified attributes and condition. |
abstract JQueryAttribute |
JQueryFactory.createAggregate(JQueryAttribute attr,
AggregationOperatorType aggreg)
Create an aggregate on the query attribute. |
abstract JQuerySortOrder |
JQueryFactory.createSortOrder(JQueryAttribute attribute)
Create ascending sort order on given attribute. |
abstract JQuerySortOrder |
JQueryFactory.createSortOrder(JQueryAttribute attribute,
boolean ascending)
Create sort order on given attribute. |
abstract JQueryGroupBy |
JQueryFactory.createGroupBy(JQueryAttribute[] groupBy)
Create group by for the specified attributes in the same order as the delivered JQueryAttribute[] |
abstract JQueryCondition |
JQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
JQueryParameter right)
Create simple condition with parameterized right operand. |
abstract JQueryCondition |
JQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
JQueryAttribute right)
Create simple condition between two attributes. |
abstract JQueryCondition |
JQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
java.lang.Object right)
Deprecated. |
abstract JQueryCondition |
JQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
java.lang.Object right,
java.lang.Object tag)
Deprecated. |
abstract JQueryCondition |
JQueryFactory.createCondition(JQueryAttribute left,
java.lang.Object[] right)
Deprecated. |
abstract JQueryCondition |
JQueryFactory.createCondition(JQueryAttribute left,
java.lang.Object[] right,
java.lang.Object tag)
Deprecated. |
Uses of JQueryAttribute in com.sap.ip.me.api.smartsync |
Methods in com.sap.ip.me.api.smartsync that return JQueryAttribute | |
abstract JQueryAttribute |
SmartSyncJQueryFactory.createAttribute(FieldDescriptor fieldName)
Create a query attribute. |
abstract JQueryAttribute |
SmartSyncJQueryFactory.createAttribute(FieldDescriptor fieldName,
java.lang.Object tag)
Create a query attribute. |
abstract JQueryAttribute |
SmartSyncJQueryFactory.createAggregate(JQueryAttribute attr,
AggregationOperatorType aggreg)
Create an aggregate on the query attribute. |
Methods in com.sap.ip.me.api.smartsync with parameters of type JQueryAttribute | |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond)
Create query based on specified attributes and condition. |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
JQuerySortOrder[] sortOrders)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
JQuerySortOrder sortOrder)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct)
Create query based on specified attributes and condition. |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct,
JQuerySortOrder[] sortOrders)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct,
JQuerySortOrder sortOrder)
Create sorted query based on specified attributes and condition. |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
JQuerySortOrder[] sortOrders,
JQueryGroupBy groupBy)
Create sorted and grouped query based on specified attributes and condition. |
abstract JQuery |
SmartSyncJQueryFactory.createQuery(JQueryAttribute[] attributes,
JQueryCondition cond,
boolean distinct,
JQuerySortOrder[] sortOrders,
JQueryGroupBy groupBy)
Create sorted and grouped query based on specified attributes and condition. |
abstract JQueryAttribute |
SmartSyncJQueryFactory.createAggregate(JQueryAttribute attr,
AggregationOperatorType aggreg)
Create an aggregate on the query attribute. |
abstract JQueryGroupBy |
SmartSyncJQueryFactory.createGroupBy(JQueryAttribute[] groupBy)
Create group by for the specified attributes in the same order as the delivered JQueryAttribute[] |
abstract JQuerySortOrder |
SmartSyncJQueryFactory.createSortOrder(JQueryAttribute attribute)
Create ascending sort order on given attribute. |
abstract JQuerySortOrder |
SmartSyncJQueryFactory.createSortOrder(JQueryAttribute attribute,
boolean ascending)
Create sort order on given attribute. |
abstract JQueryCondition |
SmartSyncJQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
JQueryParameter right)
Create simple condition with parameterized right operand. |
abstract JQueryCondition |
SmartSyncJQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
JQueryAttribute right)
Create simple condition. |
abstract JQueryCondition |
SmartSyncJQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
java.lang.Object right)
Create simple condition. |
abstract JQueryCondition |
SmartSyncJQueryFactory.createCondition(JQueryAttribute left,
java.lang.Object[] right)
Create simple IN condition. |
abstract JQueryCondition |
SmartSyncJQueryFactory.createCondition(JQueryAttribute left,
RelationalOperatorType operator,
java.lang.Object right,
java.lang.Object tag)
Create named simple condition. |
abstract JQueryCondition |
SmartSyncJQueryFactory.createCondition(JQueryAttribute left,
java.lang.Object[] right,
java.lang.Object tag)
Create named simple IN condition. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |