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