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