public enum RelativeUrlsUsed extends Enum<RelativeUrlsUsed>
Enum Constant and Description |
---|
ALWAYS
Always use relative URI and resolve them later based on browser HTTP request
|
NEVER
Relative Uri not used.
|
Modifier and Type | Method and Description |
---|---|
static RelativeUrlsUsed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelativeUrlsUsed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelativeUrlsUsed ALWAYS
public static final RelativeUrlsUsed NEVER
public static RelativeUrlsUsed[] values()
for (RelativeUrlsUsed c : RelativeUrlsUsed.values()) System.out.println(c);
public static RelativeUrlsUsed 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 © 2019 JBoss by Red Hat. All rights reserved.