public interface IRetrievalSchema
Modifier and Type | Method and Description |
---|---|
void |
addAggregateRowDefinition(java.util.LinkedHashMap<java.lang.String,AggregateFunction> aggregateRowDefinition)
Deprecated.
|
void |
addAllMetaPrimitiveNames(java.util.List<java.lang.String> names)
Deprecated.
|
void |
addMetaAssociationSchema(IMetaAssociationSchema metaAssociationSchema)
Deprecated.
|
void |
addMetaPrimitiveName(java.lang.String name)
Deprecated.
|
void |
addMetaPrimitiveNames(java.lang.String... name)
Deprecated.
|
ISortExpression |
addSortExpression(java.lang.String memberName,
ISortExpression.SortDirection sortDirection)
Adds a new sort expression to this request based on the given parameters.
|
void |
addSortExpressions(ISortExpression... sortExpressions)
Adds all
|
void |
clearMetaPrimitiveNames()
Deprecated.
|
void |
clearSortExpressions()
Removes all sort expressions from the list of sort expressions of this request.
|
void |
copyFrom(IRetrievalSchema source)
Deprecated.
|
java.util.List<java.util.LinkedHashMap<java.lang.String,AggregateFunction>> |
getAggregateRowDefinitions()
Deprecated.
|
long |
getAmount()
Returns the count of the result rows to be retrieved.
|
int |
getAssociationDepth()
Deprecated.
|
java.util.List<? extends IMetaAssociationSchema> |
getMetaAssociationSchemas()
Deprecated.
|
java.lang.String |
getMetaObjectName()
Deprecated.
|
java.util.List<IMetaObject> |
getMetaObjects()
Deprecated.
|
java.util.Collection<java.lang.String> |
getMetaPrimitiveNames()
Deprecated.
|
long |
getOffset()
Returns the start row from where the result will be retrieved.
|
java.util.List<? extends ISortExpression> |
getSortExpressions()
Returns the sort expressions which are used to sort the result data of this request.
|
boolean |
isDistinct()
Deprecated.
|
void |
removeSortExpression(ISortExpression sortExpression)
Removes a sort expression from the list of sort expressions of this request.
|
void |
setAmount(long amount)
Sets the count of the result rows to be retrieved.
|
void |
setAssociationDepth(int depth)
Deprecated.
|
void |
setDistinct(boolean distinct)
Deprecated.
|
void |
setMetaObjectName(java.lang.String name)
Deprecated.
|
void |
setOffset(long offset)
Sets the start row from where the result will be retrieved.
|
boolean |
useOnlyDeclaredMembers()
Deprecated.
|
long getOffset()
void setOffset(long offset)
long getAmount()
void setAmount(long amount)
java.util.List<? extends ISortExpression> getSortExpressions()
void addSortExpressions(ISortExpression... sortExpressions)
sortExpressions
- the sort expressions.ISortExpression addSortExpression(java.lang.String memberName, ISortExpression.SortDirection sortDirection)
memberName
- the member on which the query result must be sortedsortDirection
- the sort orderISortExpression
void removeSortExpression(ISortExpression sortExpression)
void clearSortExpressions()
@Deprecated int getAssociationDepth()
@Deprecated void setAssociationDepth(int depth)
@Deprecated boolean useOnlyDeclaredMembers()
@Deprecated java.util.List<IMetaObject> getMetaObjects()
@Deprecated java.util.List<? extends IMetaAssociationSchema> getMetaAssociationSchemas()
@Deprecated void addMetaAssociationSchema(IMetaAssociationSchema metaAssociationSchema)
@Deprecated java.util.Collection<java.lang.String> getMetaPrimitiveNames()
@Deprecated void addMetaPrimitiveName(java.lang.String name)
@Deprecated void addMetaPrimitiveNames(java.lang.String... name)
@Deprecated void addAllMetaPrimitiveNames(java.util.List<java.lang.String> names)
@Deprecated void clearMetaPrimitiveNames()
@Deprecated void addAggregateRowDefinition(java.util.LinkedHashMap<java.lang.String,AggregateFunction> aggregateRowDefinition)
@Deprecated java.util.List<java.util.LinkedHashMap<java.lang.String,AggregateFunction>> getAggregateRowDefinitions()
@Deprecated java.lang.String getMetaObjectName()
@Deprecated void setMetaObjectName(java.lang.String name)
@Deprecated boolean isDistinct()
@Deprecated void setDistinct(boolean distinct)
@Deprecated void copyFrom(IRetrievalSchema source)
source
-