public enum STRUCTURE_TYPE extends java.lang.Enum<STRUCTURE_TYPE>
Enum Constant and Description |
---|
METADATA_REPORT |
QUERY_MESSAGE |
REGISTRY_INTERFACE |
STRUCTURE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static STRUCTURE_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static STRUCTURE_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STRUCTURE_TYPE STRUCTURE
public static final STRUCTURE_TYPE METADATA_REPORT
public static final STRUCTURE_TYPE REGISTRY_INTERFACE
public static final STRUCTURE_TYPE QUERY_MESSAGE
public static STRUCTURE_TYPE[] values()
for (STRUCTURE_TYPE c : STRUCTURE_TYPE.values()) System.out.println(c);
public static STRUCTURE_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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<STRUCTURE_TYPE>