public static enum Ipv6Token.Kind extends Enum<Ipv6Token.Kind>
Enum Constant and Description |
---|
COLON |
DOT |
DOUBLE_COLON |
EOF |
NUM |
OTHER |
Modifier and Type | Method and Description |
---|---|
static Ipv6Token.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ipv6Token.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ipv6Token.Kind NUM
public static final Ipv6Token.Kind DOT
public static final Ipv6Token.Kind COLON
public static final Ipv6Token.Kind DOUBLE_COLON
public static final Ipv6Token.Kind OTHER
public static final Ipv6Token.Kind EOF
public static Ipv6Token.Kind[] values()
for (Ipv6Token.Kind c : Ipv6Token.Kind.values()) System.out.println(c);
public static Ipv6Token.Kind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null