public static enum EventTypeMetadata.ApplicationType extends java.lang.Enum<EventTypeMetadata.ApplicationType>
Enum Constant and Description |
---|
CLASS
Class type.
|
MAP
Map type.
|
OBJECTARR
Object Array type.
|
XML
Xml type.
|
Modifier and Type | Method and Description |
---|---|
static EventTypeMetadata.ApplicationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventTypeMetadata.ApplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypeMetadata.ApplicationType XML
public static final EventTypeMetadata.ApplicationType MAP
public static final EventTypeMetadata.ApplicationType OBJECTARR
public static final EventTypeMetadata.ApplicationType CLASS
public static EventTypeMetadata.ApplicationType[] values()
for (EventTypeMetadata.ApplicationType c : EventTypeMetadata.ApplicationType.values()) System.out.println(c);
public static EventTypeMetadata.ApplicationType 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