org.olap4j.query
public static enum QueryEvent.Type extends Enum<QueryEvent.Type>
Enum Constant and Description |
---|
CHILDREN_ADDED
Event where one or more nodes were added as children of a QueryNode.
|
CHILDREN_REMOVED
Event where one or more children of a QueryNode were removed.
|
SELECTION_CHANGED
Event where a Selection object operator was changed.
|
Modifier and Type | Method and Description |
---|---|
static QueryEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryEvent.Type CHILDREN_REMOVED
public static final QueryEvent.Type CHILDREN_ADDED
public static final QueryEvent.Type SELECTION_CHANGED
public static QueryEvent.Type[] values()
for (QueryEvent.Type c : QueryEvent.Type.values()) System.out.println(c);
public static QueryEvent.Type 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