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