public static enum RolapLevel.HideMemberCondition extends Enum<RolapLevel.HideMemberCondition>
| Enum Constant and Description | 
|---|
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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
public static final RolapLevel.HideMemberCondition Never
public static final RolapLevel.HideMemberCondition IfBlankName
public static final RolapLevel.HideMemberCondition IfParentsName
public static RolapLevel.HideMemberCondition[] values()
for (RolapLevel.HideMemberCondition c : RolapLevel.HideMemberCondition.values()) System.out.println(c);
public static RolapLevel.HideMemberCondition valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null