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