|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RolapLevel.HideMemberCondition> mondrian.rolap.RolapLevel.HideMemberCondition
public static enum RolapLevel.HideMemberCondition
Conditions under which a level's members may be hidden (thereby creating a ragged hierarchy).
Enum Constant Summary | |
---|---|
IfBlankName
A member doesn't appear if its name is null or empty. |
|
IfParentsName
A member appears unless its name matches its parent's. |
|
Never
A member always appears. |
Method Summary | |
---|---|
static RolapLevel.HideMemberCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RolapLevel.HideMemberCondition[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RolapLevel.HideMemberCondition Never
public static final RolapLevel.HideMemberCondition IfBlankName
public static final RolapLevel.HideMemberCondition IfParentsName
Method Detail |
---|
public static RolapLevel.HideMemberCondition[] values()
for (RolapLevel.HideMemberCondition c : RolapLevel.HideMemberCondition.values()) System.out.println(c);
public static RolapLevel.HideMemberCondition valueOf(String name)
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |