- java.lang.Object
-
- java.lang.Enum<IPAddressProvider.IPType>
-
- inet.ipaddr.format.validate.IPAddressProvider.IPType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IPAddressProvider.IPType>
- Enclosing interface:
- IPAddressProvider
public static enum IPAddressProvider.IPType extends java.lang.Enum<IPAddressProvider.IPType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IPAddressProvider.IPType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IPAddressProvider.IPType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID
public static final IPAddressProvider.IPType INVALID
-
EMPTY
public static final IPAddressProvider.IPType EMPTY
-
IPV4
public static final IPAddressProvider.IPType IPV4
-
IPV6
public static final IPAddressProvider.IPType IPV6
-
PREFIX_ONLY
public static final IPAddressProvider.IPType PREFIX_ONLY
-
ALL
public static final IPAddressProvider.IPType ALL
-
-
Method Detail
-
values
public static IPAddressProvider.IPType[] 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 (IPAddressProvider.IPType c : IPAddressProvider.IPType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IPAddressProvider.IPType 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
-
-