public static enum ScreenDriver.UriPathAnchor extends java.lang.Enum<ScreenDriver.UriPathAnchor>
| Enum Constant and Description |
|---|
NONE
The path is already absolute.
|
WEB_SERVER
The relative path is resolved in respect to the server's web server host as
https://host:port/path, where host and port are respectively the server's web server host
and port, and path is a given relative path to be resolved.
|
| Modifier and Type | Method and Description |
|---|---|
static ScreenDriver.UriPathAnchor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenDriver.UriPathAnchor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenDriver.UriPathAnchor NONE
public static final ScreenDriver.UriPathAnchor WEB_SERVER
public static ScreenDriver.UriPathAnchor[] values()
for (ScreenDriver.UriPathAnchor c : ScreenDriver.UriPathAnchor.values()) System.out.println(c);
public static ScreenDriver.UriPathAnchor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null