Enum DeepSerializedValue.Type
- java.lang.Object
-
- java.lang.Enum<DeepSerializedValue.Type>
-
- org.openqa.selenium.devtools.v115.runtime.model.DeepSerializedValue.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DeepSerializedValue.Type>
- Enclosing class:
- DeepSerializedValue
public static enum DeepSerializedValue.Type extends java.lang.Enum<DeepSerializedValue.Type>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeepSerializedValue.TypefromString(java.lang.String s)java.lang.StringtoJson()java.lang.StringtoString()static DeepSerializedValue.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DeepSerializedValue.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED
public static final DeepSerializedValue.Type UNDEFINED
-
NULL
public static final DeepSerializedValue.Type NULL
-
STRING
public static final DeepSerializedValue.Type STRING
-
NUMBER
public static final DeepSerializedValue.Type NUMBER
-
BOOLEAN
public static final DeepSerializedValue.Type BOOLEAN
-
BIGINT
public static final DeepSerializedValue.Type BIGINT
-
REGEXP
public static final DeepSerializedValue.Type REGEXP
-
DATE
public static final DeepSerializedValue.Type DATE
-
SYMBOL
public static final DeepSerializedValue.Type SYMBOL
-
ARRAY
public static final DeepSerializedValue.Type ARRAY
-
OBJECT
public static final DeepSerializedValue.Type OBJECT
-
FUNCTION
public static final DeepSerializedValue.Type FUNCTION
-
MAP
public static final DeepSerializedValue.Type MAP
-
SET
public static final DeepSerializedValue.Type SET
-
WEAKMAP
public static final DeepSerializedValue.Type WEAKMAP
-
WEAKSET
public static final DeepSerializedValue.Type WEAKSET
-
ERROR
public static final DeepSerializedValue.Type ERROR
-
PROXY
public static final DeepSerializedValue.Type PROXY
-
PROMISE
public static final DeepSerializedValue.Type PROMISE
-
TYPEDARRAY
public static final DeepSerializedValue.Type TYPEDARRAY
-
ARRAYBUFFER
public static final DeepSerializedValue.Type ARRAYBUFFER
-
NODE
public static final DeepSerializedValue.Type NODE
-
WINDOW
public static final DeepSerializedValue.Type WINDOW
-
-
Method Detail
-
values
public static DeepSerializedValue.Type[] 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 (DeepSerializedValue.Type c : DeepSerializedValue.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeepSerializedValue.Type 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 DeepSerializedValue.Type fromString(java.lang.String s)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<DeepSerializedValue.Type>
-
toJson
public java.lang.String toJson()
-
-