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