Enum ProtocolTypeType
- java.lang.Object
-
- java.lang.Enum<ProtocolTypeType>
-
- org.bidib.jbidibc.decoder.schema.commontypes.ProtocolTypeType
-
- All Implemented Interfaces:
Serializable,Comparable<ProtocolTypeType>
public enum ProtocolTypeType extends Enum<ProtocolTypeType>
<p>Java class for ProtocolTypeType. <p>The following schema fragment specifies the expected content contained within this class. <pre> <simpleType name="ProtocolTypeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="dcc"/> <enumeration value="mm"/> <enumeration value="mfx"/> <enumeration value="sx"/> <enumeration value="sx2"/> <enumeration value="susi"/> </restriction> </simpleType> </pre>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProtocolTypeTypefromValue(String v)Stringvalue()static ProtocolTypeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ProtocolTypeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DCC
public static final ProtocolTypeType DCC
-
MM
public static final ProtocolTypeType MM
-
MFX
public static final ProtocolTypeType MFX
-
SX
public static final ProtocolTypeType SX
-
SX_2
public static final ProtocolTypeType SX_2
-
SUSI
public static final ProtocolTypeType SUSI
-
-
Method Detail
-
values
public static ProtocolTypeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProtocolTypeType c : ProtocolTypeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProtocolTypeType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static ProtocolTypeType fromValue(String v)
-
-