public enum ProtocolVersion extends java.lang.Enum<ProtocolVersion>
Enum Constant and Description |
---|
DEAFULT |
NO_PRODUCT |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getVersion() |
static boolean |
isValidVersion(java.lang.String version)
是否有效版本号
|
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 DEAFULT
public static final ProtocolVersion NO_PRODUCT
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 java.lang.String getVersion()
public static boolean isValidVersion(java.lang.String version)
version
- 版本号