Package net.i2p.util
Enum DNSOverHTTPS.Type
- java.lang.Object
-
- java.lang.Enum<DNSOverHTTPS.Type>
-
- net.i2p.util.DNSOverHTTPS.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<DNSOverHTTPS.Type>
- Enclosing class:
- DNSOverHTTPS
public static enum DNSOverHTTPS.Type extends Enum<DNSOverHTTPS.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description V4_ONLY
V4_PREFERRED
V6_ONLY
V6_PREFERRED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DNSOverHTTPS.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static DNSOverHTTPS.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
V4_ONLY
public static final DNSOverHTTPS.Type V4_ONLY
-
V6_ONLY
public static final DNSOverHTTPS.Type V6_ONLY
-
V4_PREFERRED
public static final DNSOverHTTPS.Type V4_PREFERRED
-
V6_PREFERRED
public static final DNSOverHTTPS.Type V6_PREFERRED
-
-
Method Detail
-
values
public static DNSOverHTTPS.Type[] 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 (DNSOverHTTPS.Type c : DNSOverHTTPS.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DNSOverHTTPS.Type 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
-
-