public enum ProtocolVersion extends java.lang.Enum<ProtocolVersion>
| Modifier and Type | Method and Description |
|---|---|
static ProtocolVersion |
byNotation(java.lang.String notation) |
java.lang.String |
notation() |
static ProtocolVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProtocolVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtocolVersion V2
public static final ProtocolVersion V3
public static final ProtocolVersion V4
public static ProtocolVersion[] values()
for (ProtocolVersion c : ProtocolVersion.values()) System.out.println(c);
public static ProtocolVersion 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 static ProtocolVersion byNotation(java.lang.String notation)
public java.lang.String notation()