Package com.microstrategy.web.objects
Interface WebSortConfig
-
- All Superinterfaces:
WebSort
- All Known Subinterfaces:
WebFormSortConfig
,WebMetricHierarchicalSortConfig
,WebMetricSortConfig
- All Known Implementing Classes:
WebMetricHierarchicalSortConfigImpl
public interface WebSortConfig extends WebSort
This interface is intented to configure a sort operation on a grid. The interface extends fromWebSort
. However this interface represents a purely configuration object. That implies that its implementations would be standalone config objects (unlike WebSort which is tied to grid template objects). The getters on such implementations thus would represent the values set instead of actual values on a template.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
generateDelta(RWDelta delta)
int
getAxis()
Returns the axis name configuredvoid
setAxis(int axisName)
Sets the axis name-
Methods inherited from interface com.microstrategy.web.objects.WebSort
getKey, getPosition, getRespectParent, getSortType, getSubtotalsPosition, getTarget, isAscending, setAscending, setRespectParent, setSubtotalsPosition
-
-
-
-
Method Detail
-
setAxis
void setAxis(int axisName)
Sets the axis name- Parameters:
axisName
-
-
getAxis
int getAxis()
Returns the axis name configured- Returns:
-
generateDelta
void generateDelta(RWDelta delta)
-
-