public static enum InvalidURIException.InvalidURIError extends Enum<InvalidURIException.InvalidURIError>
Enum Constant and Description |
---|
ILLEGAL_SYNTAX |
INSECURE_REDIRECTION |
INVALID_PATH |
UNSUPPORTED_PROTOCOL |
Modifier and Type | Method and Description |
---|---|
String |
getMessage(Object... arguments) |
static InvalidURIException.InvalidURIError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvalidURIException.InvalidURIError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidURIException.InvalidURIError ILLEGAL_SYNTAX
public static final InvalidURIException.InvalidURIError INVALID_PATH
public static final InvalidURIException.InvalidURIError UNSUPPORTED_PROTOCOL
public static final InvalidURIException.InvalidURIError INSECURE_REDIRECTION
public static InvalidURIException.InvalidURIError[] values()
for (InvalidURIException.InvalidURIError c : InvalidURIException.InvalidURIError.values()) System.out.println(c);
public static InvalidURIException.InvalidURIError valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.