com.businessobjects.rebean.wi
Class DrillActionType

java.lang.Object
  extended by com.businessobjects.rebean.wi.DrillActionType
All Implemented Interfaces:
java.io.Serializable

public final class DrillActionType
extends java.lang.Object
implements java.io.Serializable

DrillActionType class defines the drill action used in the DrillPath.

See Also:
DrillInfo, DrillPath, DrillPath.setAction(DrillActionType), DrillInfo.executeDrill(), Serialized Form

Field Summary
static int _BY
          Returns the int value corresponding to "BY" DrillActionType
static int _DOWN
          Returns the int value corresponding to "DOWN" DrillActionType
static int _SLICE
          Returns the int value corresponding to "SLICE" DrillActionType
static int _UP
          Returns the int value corresponding to "UP" DrillActionType
static DrillActionType BY
          Drill by (drill from the current hierarchy to another)
static DrillActionType DOWN
          Drill down
static DrillActionType SLICE
          Slice (apply a drill filter)
static DrillActionType UP
          Drill up
 
Method Summary
static DrillActionType from_int(int value)
          Returns a DrillActionType instance corresponding to the integer value passed as a parameter
 java.lang.String toString()
          The String value of a DrillActionType instance.
 int value()
          The int value of a DrillActionType instance.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_DOWN

public static final int _DOWN
Returns the int value corresponding to "DOWN" DrillActionType

See Also:
Constant Field Values

DOWN

public static final DrillActionType DOWN
Drill down


_UP

public static final int _UP
Returns the int value corresponding to "UP" DrillActionType

See Also:
Constant Field Values

UP

public static final DrillActionType UP
Drill up


_BY

public static final int _BY
Returns the int value corresponding to "BY" DrillActionType

See Also:
Constant Field Values

BY

public static final DrillActionType BY
Drill by (drill from the current hierarchy to another)


_SLICE

public static final int _SLICE
Returns the int value corresponding to "SLICE" DrillActionType

See Also:
Constant Field Values

SLICE

public static final DrillActionType SLICE
Slice (apply a drill filter)

Method Detail

value

public int value()
The int value of a DrillActionType instance.

Returns:
the int value of DrillActionType instance.

from_int

public static DrillActionType from_int(int value)
Returns a DrillActionType instance corresponding to the integer value passed as a parameter

Parameters:
value -
Returns:
DrillActionType instance.

toString

public java.lang.String toString()
The String value of a DrillActionType instance.

Overrides:
toString in class java.lang.Object
Returns:
the String value of a DrillActionType instance.