public static enum Subnet.IpVersion extends java.lang.Enum<Subnet.IpVersion> implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
private int |
code |
Modifier and Type | Method and Description |
---|---|
int |
code() |
java.lang.String |
toString() |
static Subnet.IpVersion |
valueOf(int value) |
static Subnet.IpVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Subnet.IpVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Subnet.IpVersion IPV4
public static final Subnet.IpVersion IPV6
public static Subnet.IpVersion[] values()
for (Subnet.IpVersion c : Subnet.IpVersion.values()) System.out.println(c);
public static Subnet.IpVersion 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 code()
public static Subnet.IpVersion valueOf(int value)
public java.lang.String toString()
toString
in class java.lang.Enum<Subnet.IpVersion>