public enum InspectMode extends Enum<InspectMode>
| Enum Constant and Description |
|---|
CAPTURE_AREA_SCREENSHOT |
NONE |
SEARCH_FOR_NODE |
SEARCH_FOR_UA_SHADOW_DOM |
SHOW_DISTANCES |
| Modifier and Type | Method and Description |
|---|---|
static InspectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InspectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InspectMode SEARCH_FOR_NODE
public static final InspectMode SEARCH_FOR_UA_SHADOW_DOM
public static final InspectMode CAPTURE_AREA_SCREENSHOT
public static final InspectMode SHOW_DISTANCES
public static final InspectMode NONE
public static InspectMode[] values()
for (InspectMode c : InspectMode.values()) System.out.println(c);
public static InspectMode 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 © 2020. All rights reserved.