public static enum Selection.Operator extends Enum<Selection.Operator>
Enum Constant and Description |
---|
ANCESTORS
Selects the set of the ascendants of a specified member,
including the member itself.
|
CHILDREN
Only the children of the root member will be selected.
|
DESCENDANTS
Selects the set of the descendants of a specified member,
including the member itself.
|
INCLUDE_CHILDREN
The root member will be selected along with all it's
children.
|
MEMBER
Only the root member will be selected.
|
MEMBERS
All members of Level will be selected (LevelSelection only)
|
SIBLINGS
Will select the root member along with all it's siblings.
|
Modifier and Type | Method and Description |
---|---|
static Selection.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Selection.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Selection.Operator MEMBER
public static final Selection.Operator MEMBERS
public static final Selection.Operator CHILDREN
Implemented via the MDX .Children member property.
public static final Selection.Operator INCLUDE_CHILDREN
public static final Selection.Operator SIBLINGS
Implemented via the MDX .Siblings member property.
public static final Selection.Operator ANCESTORS
Implemented via the MDX Ascendants() function.
public static final Selection.Operator DESCENDANTS
Implemented via the MDX Descendants() function.
public static Selection.Operator[] values()
for (Selection.Operator c : Selection.Operator.values()) System.out.println(c);
public static Selection.Operator 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