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