public enum EventTypeApplicationType extends Enum<EventTypeApplicationType>
Enum Constant and Description |
---|
AVRO
Avro type.
|
CLASS
Class type.
|
MAP
Map type.
|
OBJECTARR
Object Array type.
|
VARIANT
Variant type.
|
WRAPPER
Wrapper type.
|
XML
Xml type.
|
Modifier and Type | Method and Description |
---|---|
static EventTypeApplicationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTypeApplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypeApplicationType XML
public static final EventTypeApplicationType MAP
public static final EventTypeApplicationType OBJECTARR
public static final EventTypeApplicationType CLASS
public static final EventTypeApplicationType AVRO
public static final EventTypeApplicationType WRAPPER
public static final EventTypeApplicationType VARIANT
public static EventTypeApplicationType[] values()
for (EventTypeApplicationType c : EventTypeApplicationType.values()) System.out.println(c);
public static EventTypeApplicationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2019. All rights reserved.