public static enum EmeEvent.EmeTrigger extends Enum<EmeEvent.EmeTrigger>
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:restriction base="xs:string">
<xs:enumeration value="EME_ORG"/>
<xs:enumeration value="EME_REL"/>
</xs:restriction>
</xs:simpleType>
| Modifier and Type | Method and Description |
|---|---|
static EmeEvent.EmeTrigger |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmeEvent.EmeTrigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmeEvent.EmeTrigger EME_ORG
public static final EmeEvent.EmeTrigger EME_REL
public static EmeEvent.EmeTrigger[] values()
for (EmeEvent.EmeTrigger c : EmeEvent.EmeTrigger.values()) System.out.println(c);
public static EmeEvent.EmeTrigger 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 © 2016. All Rights Reserved.