public enum TransportProtocol extends java.lang.Enum<TransportProtocol>
| Modifier and Type | Field and Description |
|---|---|
private int |
intValue |
private java.lang.String |
stringValue |
| Modifier and Type | Method and Description |
|---|---|
int |
getIntValue()
Gets an integer value for switches.
|
java.lang.String |
toString() |
static TransportProtocol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransportProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransportProtocol TCP
public static final TransportProtocol UDP
private final int intValue
private final java.lang.String stringValue
public static TransportProtocol[] values()
for (TransportProtocol c : TransportProtocol.values()) System.out.println(c);
public static TransportProtocol valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getIntValue()
public java.lang.String toString()
toString in class java.lang.Enum<TransportProtocol>