public enum BASE_DATA_FORMAT extends java.lang.Enum<BASE_DATA_FORMAT>
Enum Constant and Description |
---|
COMPACT
Relates to Compact (1.0/2.0) and StructureSpecific, StructureSpecificTime Series (2.1)
|
CROSS_SECTIONAL
Relates to 2.0 Cross Sectional Data
|
CSV
Any type of delimited data
|
EDI
Relates to EDI
|
GENERIC
Generic Data Messages - includes 2.1 Generic and GenericTimeSeries
|
MESSAGE_GROUP
Relates to Message Group Data (2.0 only)
|
SDMXJSON
Sdmx Json Format
|
UTILITY
Relates to Utility Data (1.0 and 2.0 only)
|
Modifier and Type | Method and Description |
---|---|
static BASE_DATA_FORMAT |
getDataFormat(MESSAGE_TYPE messageType) |
java.lang.String |
getRootNode() |
java.lang.String |
toString() |
static BASE_DATA_FORMAT |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BASE_DATA_FORMAT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BASE_DATA_FORMAT GENERIC
public static final BASE_DATA_FORMAT COMPACT
public static final BASE_DATA_FORMAT UTILITY
public static final BASE_DATA_FORMAT EDI
public static final BASE_DATA_FORMAT CROSS_SECTIONAL
public static final BASE_DATA_FORMAT MESSAGE_GROUP
public static final BASE_DATA_FORMAT CSV
public static final BASE_DATA_FORMAT SDMXJSON
public static BASE_DATA_FORMAT[] values()
for (BASE_DATA_FORMAT c : BASE_DATA_FORMAT.values()) System.out.println(c);
public static BASE_DATA_FORMAT 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 getRootNode()
public static BASE_DATA_FORMAT getDataFormat(MESSAGE_TYPE messageType)
public java.lang.String toString()
toString
in class java.lang.Enum<BASE_DATA_FORMAT>