public enum FilterKeyQualifier extends java.lang.Enum<FilterKeyQualifier>
Enum Constant and Description |
---|
DIMENSION_NAME
Specifies that the key provided in a query is to be treated as the name of a dimension.
|
MEASUREMENT_NAME
Specifies that the key provided in a query is to be treated as the name of a metric computation.
|
Modifier and Type | Method and Description |
---|---|
static FilterKeyQualifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterKeyQualifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterKeyQualifier MEASUREMENT_NAME
public static final FilterKeyQualifier DIMENSION_NAME
public static FilterKeyQualifier[] values()
for (FilterKeyQualifier c : FilterKeyQualifier.values()) System.out.println(c);
public static FilterKeyQualifier valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2000-2014 TIBCO Inc. All Rights Reserved.