Package com.microstrategy.web.objects
Interface WebDrillPath
- 
 public interface WebDrillPathThe WebDrillPath interface holds a drill path. A drill path describes a path that a user might want to follow when the user wants to drill on a report. A drill path consists of drill action (or a chain of drill actions), presentation information and its importance index.- Since:
- MicroStrategy Web 7.3.1 or earlier
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns the description string for this drill path.intgetDisplayMode()returns the display mode for the report upon execution of the drill path possible values are inWebDrillActionsgetDrillActions()Returns theWebDrillActionsobject in this drill path.intgetDrillType()intgetID()Returns the ID of this drill path.intgetImportance()Returns the importance index for this drill path.java.lang.StringgetKey()java.lang.StringgetName()Returns the name of this drill path.WebObjectInfogetPathObject()Returns theWebObjectInfofor the drill path, if any.java.lang.StringgetSetName()Returns the name of the Set/Group that this drill path belongs to.booleanisDrillWithin()Indicates if this drill path will result in a drill within the document or within the cube report of the view filter.
 
- 
- 
- 
Method Detail- 
getDrillActionsWebDrillActions getDrillActions() Returns theWebDrillActionsobject in this drill path. The drill actions object thus returned is a collection of a linear chain of drill actions for this drill path.- Returns:
- The WebDrillActionsobject.
 
 - 
getNamejava.lang.String getName() Returns the name of this drill path.- Returns:
- The name of this drill path.
 
 - 
getDescriptionjava.lang.String getDescription() Returns the description string for this drill path.- Returns:
- The description string for this drill path.
 
 - 
getImportanceint getImportance() Returns the importance index for this drill path.- Returns:
- The importance index of this drill path. The possible values are listed in EnumDSSXMLDrillImportance
 
 - 
getSetNamejava.lang.String getSetName() Returns the name of the Set/Group that this drill path belongs to.- Returns:
- The name of the group/set that this drill path belongs to.
 
 - 
getIDint getID() Returns the ID of this drill path.- Returns:
- the ID of this drill path.
 
 - 
getPathObjectWebObjectInfo getPathObject() Returns theWebObjectInfofor the drill path, if any. This call can return null.- Returns:
- the path object for the drill path, if any.
 
 - 
getKeyjava.lang.String getKey() - Since:
- MicroStrategy Web 8.0.0
 
 - 
getDrillTypeint getDrillType() - Since:
- MicroStrategy Web 8.0.0
 
 - 
getDisplayModeint getDisplayMode() returns the display mode for the report upon execution of the drill path possible values are in- Since:
- MicroStrategy Web 8.0.1
 
 - 
isDrillWithinboolean isDrillWithin() Indicates if this drill path will result in a drill within the document or within the cube report of the view filter.- Returns:
- true If this drill path will result in a drill within the document or within the cube report of the vview filter.
- Since:
- MicroStrategy Web 9.0.0
 
 
- 
 
-