Package mireka.address.parser
Enum AddressLiteralTagToken.Kind
- Object
-
- Enum<AddressLiteralTagToken.Kind>
-
- mireka.address.parser.AddressLiteralTagToken.Kind
-
- All Implemented Interfaces:
java.io.Serializable,Comparable<AddressLiteralTagToken.Kind>
- Enclosing class:
- AddressLiteralTagToken
public static enum AddressLiteralTagToken.Kind extends Enum<AddressLiteralTagToken.Kind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIGITIPv6STANDARDIZED_TAG
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AddressLiteralTagToken.KindvalueOf(String name)Returns the enum constant of this type with the specified name.static AddressLiteralTagToken.Kind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIGIT
public static final AddressLiteralTagToken.Kind DIGIT
-
IPv6
public static final AddressLiteralTagToken.Kind IPv6
-
STANDARDIZED_TAG
public static final AddressLiteralTagToken.Kind STANDARDIZED_TAG
-
-
Method Detail
-
values
public static AddressLiteralTagToken.Kind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AddressLiteralTagToken.Kind c : AddressLiteralTagToken.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AddressLiteralTagToken.Kind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-