Module inet.ipaddr
Package inet.ipaddr.ipv6
Enum IPv6AddressSection.CompressOptions.CompressionChoiceOptions
- java.lang.Object
-
- java.lang.Enum<IPv6AddressSection.CompressOptions.CompressionChoiceOptions>
-
- inet.ipaddr.ipv6.IPv6AddressSection.CompressOptions.CompressionChoiceOptions
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IPv6AddressSection.CompressOptions.CompressionChoiceOptions>
- Enclosing class:
- IPv6AddressSection.CompressOptions
public static enum IPv6AddressSection.CompressOptions.CompressionChoiceOptions extends java.lang.Enum<IPv6AddressSection.CompressOptions.CompressionChoiceOptions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HOST_PREFERRED
MIXED_PREFERRED
ZEROS
ZEROS_OR_HOST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IPv6AddressSection.CompressOptions.CompressionChoiceOptions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IPv6AddressSection.CompressOptions.CompressionChoiceOptions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOST_PREFERRED
public static final IPv6AddressSection.CompressOptions.CompressionChoiceOptions HOST_PREFERRED
-
MIXED_PREFERRED
public static final IPv6AddressSection.CompressOptions.CompressionChoiceOptions MIXED_PREFERRED
-
ZEROS_OR_HOST
public static final IPv6AddressSection.CompressOptions.CompressionChoiceOptions ZEROS_OR_HOST
-
ZEROS
public static final IPv6AddressSection.CompressOptions.CompressionChoiceOptions ZEROS
-
-
Method Detail
-
values
public static IPv6AddressSection.CompressOptions.CompressionChoiceOptions[] 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 (IPv6AddressSection.CompressOptions.CompressionChoiceOptions c : IPv6AddressSection.CompressOptions.CompressionChoiceOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IPv6AddressSection.CompressOptions.CompressionChoiceOptions valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-