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