Enum EventAttributeValue.Type
- java.lang.Object
-
- java.lang.Enum<EventAttributeValue.Type>
-
- org.openqa.selenium.remote.tracing.EventAttributeValue.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EventAttributeValue.Type>
- Enclosing class:
- EventAttributeValue
public static enum EventAttributeValue.Type extends java.lang.Enum<EventAttributeValue.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEAN
BOOLEAN_ARRAY
DOUBLE
DOUBLE_ARRAY
LONG
LONG_ARRAY
STRING
STRING_ARRAY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EventAttributeValue.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EventAttributeValue.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final EventAttributeValue.Type BOOLEAN
-
BOOLEAN_ARRAY
public static final EventAttributeValue.Type BOOLEAN_ARRAY
-
DOUBLE
public static final EventAttributeValue.Type DOUBLE
-
DOUBLE_ARRAY
public static final EventAttributeValue.Type DOUBLE_ARRAY
-
LONG
public static final EventAttributeValue.Type LONG
-
LONG_ARRAY
public static final EventAttributeValue.Type LONG_ARRAY
-
STRING
public static final EventAttributeValue.Type STRING
-
STRING_ARRAY
public static final EventAttributeValue.Type STRING_ARRAY
-
-
Method Detail
-
values
public static EventAttributeValue.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 (EventAttributeValue.Type c : EventAttributeValue.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 EventAttributeValue.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
-
-