public enum UriResolution extends Enum<UriResolution>
Enum Constant and Description |
---|
ABSOLUTE
Resolve to an absolute URL (e.g.
|
NONE
Don't do any URL resolution.
|
ROOT_RELATIVE
Resolve to a root-relative URL (e.g.
|
Modifier and Type | Method and Description |
---|---|
static UriResolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UriResolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UriResolution ABSOLUTE
public static final UriResolution ROOT_RELATIVE
public static final UriResolution NONE
public static UriResolution[] values()
for (UriResolution c : UriResolution.values()) System.out.println(c);
public static UriResolution 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 © 2018 Apache. All rights reserved.