public enum DATASET_POSITION extends java.lang.Enum<DATASET_POSITION>
Enum Constant and Description |
---|
DATASET
Position is at the dataset level
|
DATASET_ATTRIBUTE
Position is at the dataset attribute level
|
GROUP
Position is at the group level
|
GROUP_KEY
Position is at the group key level
|
GROUP_KEY_ATTRIBUTE
Position is at the group key attribute level
|
OBSERAVTION_AS_SERIES
Position is at the series level, when the series also contains the observation information (SDMX 2.1 only)
|
OBSERVATION
Position is at the observation level
|
OBSERVATION_ATTRIBUTE
Position is at the observation attribute level
|
SERIES
Position is at the series level
|
SERIES_KEY
Position is at the series key level
|
SERIES_KEY_ATTRIBUTE
Position is at the series key attribute level
|
Modifier and Type | Method and Description |
---|---|
static DATASET_POSITION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DATASET_POSITION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DATASET_POSITION DATASET
public static final DATASET_POSITION DATASET_ATTRIBUTE
public static final DATASET_POSITION SERIES
public static final DATASET_POSITION SERIES_KEY
public static final DATASET_POSITION SERIES_KEY_ATTRIBUTE
public static final DATASET_POSITION GROUP
public static final DATASET_POSITION GROUP_KEY
public static final DATASET_POSITION GROUP_KEY_ATTRIBUTE
public static final DATASET_POSITION OBSERVATION
public static final DATASET_POSITION OBSERVATION_ATTRIBUTE
public static final DATASET_POSITION OBSERAVTION_AS_SERIES
public static DATASET_POSITION[] values()
for (DATASET_POSITION c : DATASET_POSITION.values()) System.out.println(c);
public static DATASET_POSITION 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 null