Enum PseudoType
- java.lang.Object
-
- java.lang.Enum<PseudoType>
-
- org.openqa.selenium.devtools.v100.dom.model.PseudoType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PseudoType>
public enum PseudoType extends java.lang.Enum<PseudoType>
Pseudo element type.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PseudoTypefromString(java.lang.String s)java.lang.StringtoJson()java.lang.StringtoString()static PseudoTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PseudoType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST_LINE
public static final PseudoType FIRST_LINE
-
FIRST_LETTER
public static final PseudoType FIRST_LETTER
-
BEFORE
public static final PseudoType BEFORE
-
AFTER
public static final PseudoType AFTER
-
MARKER
public static final PseudoType MARKER
-
BACKDROP
public static final PseudoType BACKDROP
-
SELECTION
public static final PseudoType SELECTION
-
TARGET_TEXT
public static final PseudoType TARGET_TEXT
-
SPELLING_ERROR
public static final PseudoType SPELLING_ERROR
-
GRAMMAR_ERROR
public static final PseudoType GRAMMAR_ERROR
-
HIGHLIGHT
public static final PseudoType HIGHLIGHT
-
FIRST_LINE_INHERITED
public static final PseudoType FIRST_LINE_INHERITED
-
SCROLLBAR
public static final PseudoType SCROLLBAR
-
SCROLLBAR_THUMB
public static final PseudoType SCROLLBAR_THUMB
-
SCROLLBAR_BUTTON
public static final PseudoType SCROLLBAR_BUTTON
-
SCROLLBAR_TRACK
public static final PseudoType SCROLLBAR_TRACK
-
SCROLLBAR_TRACK_PIECE
public static final PseudoType SCROLLBAR_TRACK_PIECE
-
SCROLLBAR_CORNER
public static final PseudoType SCROLLBAR_CORNER
-
RESIZER
public static final PseudoType RESIZER
-
INPUT_LIST_BUTTON
public static final PseudoType INPUT_LIST_BUTTON
-
TRANSITION
public static final PseudoType TRANSITION
-
TRANSITION_CONTAINER
public static final PseudoType TRANSITION_CONTAINER
-
TRANSITION_OLD_CONTENT
public static final PseudoType TRANSITION_OLD_CONTENT
-
TRANSITION_NEW_CONTENT
public static final PseudoType TRANSITION_NEW_CONTENT
-
-
Method Detail
-
values
public static PseudoType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PseudoType c : PseudoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PseudoType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromString
public static PseudoType fromString(java.lang.String s)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<PseudoType>
-
toJson
public java.lang.String toJson()
-
-