public enum ARTIFACT_TYPE extends java.lang.Enum<ARTIFACT_TYPE>
Enum Constant and Description |
---|
DATA
Relates to SDMX Data Messages
|
METADATA
Relates to SDMX Data Metadata Set Messages
|
NOTIFICATION
Relates to SDMX Notification Messages
|
PROVISION
Relates to SDMX Provision Messages (only relevant in SDMX v2.0)
|
REGISTRATION
Relates to SDMX Registration Messages (Could be Submission or Query Response)
|
STRUCTURE
Relates to SDMX Structure Messages including Registry Interface submissions and query structure responses
|
SUBSCRIPTION
Relates to SDMX Subscription Messages - either submission or query response
|
Modifier and Type | Method and Description |
---|---|
static ARTIFACT_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ARTIFACT_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ARTIFACT_TYPE DATA
public static final ARTIFACT_TYPE METADATA
public static final ARTIFACT_TYPE PROVISION
public static final ARTIFACT_TYPE REGISTRATION
public static final ARTIFACT_TYPE STRUCTURE
public static final ARTIFACT_TYPE NOTIFICATION
public static final ARTIFACT_TYPE SUBSCRIPTION
public static ARTIFACT_TYPE[] values()
for (ARTIFACT_TYPE c : ARTIFACT_TYPE.values()) System.out.println(c);
public static ARTIFACT_TYPE 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