Package com.microstrategy.web.app.beans
Interface GUIOperator
- 
public interface GUIOperator- Since:
 - MicroStrategy Web 9.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDisplayName()Returns the display name of this operator.intgetDSSFunction()Returns the dss function value of this operator.intgetFunctionType()Returns the function type of this operator.intgetWebFunction()Returns the web function value of this operator Web function value.booleanisAscending()Returns whether current operator is for ascending.voidsetAscending(boolean val)Sets whether current operator is ascending.voidsetDisplayName(java.lang.String disp)Sets display name for this operator.voidsetDSSFunction(int dssFunc)Sets the dss function value of this operatorvoidsetFunctionType(int funcType)Sets the function type of this operator.voidsetWebFunction(int func)Sets web function value of this operator. 
 - 
 
- 
- 
Method Detail
- 
getDSSFunction
int getDSSFunction()
Returns the dss function value of this operator. This function value has to be considered with function type and ascending/descending information to fully describe an operator.- Returns:
 - operator function. An value from enumeration 
EnumDSSXMLFunction - See Also:
 getFunctionType(),setFunctionType(int),isAscending(),setAscending(boolean)
 
- 
setDSSFunction
void setDSSFunction(int dssFunc)
Sets the dss function value of this operator- See Also:
 getDSSFunction()
 
- 
getWebFunction
int getWebFunction()
Returns the web function value of this operator Web function value. This value with function type, can fully describe the operator. This is the value mostly used in web application. It is a value from two enumerations. When the function type is GenericEnumWebFunctionType.WebFunctionTypeGeneric, the value is the same as DSS function valuegetDSSFunction(). When the function type is RankEnumWebFunctionType.WebFunctionTypeRankQualor PercentageEnumWebFunctionType.WebFunctionTypePercentQual, the value is fromEnumWebMRPFunction.- Returns:
 - The web functionAn value from 
EnumDSSXMLFunctionorEnumWebMRPFunction. 
 
- 
setWebFunction
void setWebFunction(int func)
Sets web function value of this operator.- Parameters:
 func- The function to set- See Also:
 getWebFunction()
 
- 
getFunctionType
int getFunctionType()
Returns the function type of this operator.- Returns:
 - the function type of this operator. An value from 
EnumWebFunctionType. 
 
- 
setFunctionType
void setFunctionType(int funcType)
Sets the function type of this operator.- Parameters:
 funcType- The function type to set.
 
- 
isAscending
boolean isAscending()
Returns whether current operator is for ascending. This value is only meaningful when function type isEnumWebFunctionType.WebFunctionTypeRankQualorEnumWebFunctionType.WebFunctionTypePercentQual.- Returns:
 trueif current operator is for ascending. Otherwise,false.
 
- 
setAscending
void setAscending(boolean val)
Sets whether current operator is ascending. This value is only meaningful when function type isEnumWebFunctionType.WebFunctionTypeRankQualorEnumWebFunctionType.WebFunctionTypePercentQual.- Parameters:
 val- The value to set.
 
- 
getDisplayName
java.lang.String getDisplayName()
Returns the display name of this operator. If this operator loaded by web application, it is localized by session's locale.- Returns:
 - The display name.
 
 
- 
setDisplayName
void setDisplayName(java.lang.String disp)
Sets display name for this operator.- Parameters:
 disp- The name.
 
 - 
 
 -