Package com.microstrategy.web.objects.rw
Interface RWGroupByElement
-
public interface RWGroupByElement
Represents group by attribute element- Since:
- MicroStrategy Web 8.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RWGroupByElements
getChildren()
Returns children elementsjava.lang.String
getDisplayName()
Returns the current element's display name.java.lang.String
getID()
Returns the ID of the element.java.lang.String
getMatchName()
Returns the current element's match name.RWGroupByElement
getParent()
Return parent elementint
getType()
Returns element typejava.lang.String
getWbFormValue()
Returns the current element's writeback form value.boolean
isCurrent()
Identifies whether the current header is the current (selected) element.
-
-
-
Method Detail
-
getID
java.lang.String getID()
Returns the ID of the element.- Returns:
- The element ID.
-
getDisplayName
java.lang.String getDisplayName()
Returns the current element's display name.- Returns:
- The current element name.
-
getMatchName
java.lang.String getMatchName()
Returns the current element's match name.- Returns:
- The current element match.
-
getType
int getType()
Returns element type- Returns:
- element type
-
isCurrent
boolean isCurrent()
Identifies whether the current header is the current (selected) element. This may or may not return a meaningful value in the context of a row or column header.- Returns:
- whether this is the current element.
-
getParent
RWGroupByElement getParent()
Return parent element- Since:
- MicroStrategy Web 9.0.1
-
getChildren
RWGroupByElements getChildren()
Returns children elements- Since:
- MicroStrategy Web 9.0.1
-
getWbFormValue
java.lang.String getWbFormValue()
Returns the current element's writeback form value.- Returns:
- The current element's writeback form value.
-
-