Package io.cryostat.agent
Enum ConfigModule.URIRange
- java.lang.Object
-
- java.lang.Enum<ConfigModule.URIRange>
-
- io.cryostat.agent.ConfigModule.URIRange
-
- All Implemented Interfaces:
Serializable,Comparable<ConfigModule.URIRange>
- Enclosing class:
- ConfigModule
public static enum ConfigModule.URIRange extends Enum<ConfigModule.URIRange>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DNS_LOCALLINK_LOCALLOOPBACKPUBLICSITE_LOCAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfigModule.URIRangefromString(String s)booleanvalidate(URI uri)static ConfigModule.URIRangevalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigModule.URIRange[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOOPBACK
public static final ConfigModule.URIRange LOOPBACK
-
LINK_LOCAL
public static final ConfigModule.URIRange LINK_LOCAL
-
SITE_LOCAL
public static final ConfigModule.URIRange SITE_LOCAL
-
DNS_LOCAL
public static final ConfigModule.URIRange DNS_LOCAL
-
PUBLIC
public static final ConfigModule.URIRange PUBLIC
-
-
Method Detail
-
values
public static ConfigModule.URIRange[] 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 (ConfigModule.URIRange c : ConfigModule.URIRange.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigModule.URIRange 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
-
validate
public boolean validate(URI uri)
-
fromString
public static ConfigModule.URIRange fromString(String s)
-
-