public enum DATA_QUERY_DETAIL extends java.lang.Enum<DATA_QUERY_DETAIL>
Enum Constant and Description |
---|
DATA_ONLY
Exclude attributes and groups
|
FULL
Return everything
|
NO_DATA |
SERIES_KEYS_ONLY
Return only the series elements and dimensions that make up the series key
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getRestParam() |
static DATA_QUERY_DETAIL |
parseString(java.lang.String str) |
static DATA_QUERY_DETAIL |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DATA_QUERY_DETAIL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DATA_QUERY_DETAIL DATA_ONLY
public static final DATA_QUERY_DETAIL SERIES_KEYS_ONLY
public static final DATA_QUERY_DETAIL FULL
public static final DATA_QUERY_DETAIL NO_DATA
public static DATA_QUERY_DETAIL[] values()
for (DATA_QUERY_DETAIL c : DATA_QUERY_DETAIL.values()) System.out.println(c);
public static DATA_QUERY_DETAIL 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 nullpublic java.lang.String getRestParam()
public static DATA_QUERY_DETAIL parseString(java.lang.String str)