- All Implemented Interfaces:
Serializable
,Comparable<EventType>
,java.lang.constant.Constable
Enumeration of the different possible
Event
types.- Since:
- 1.4
- See Also:
Event
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSignals that aTestDescriptor
has been dynamically registered.Signals that the execution of aTestDescriptor
has finished, regardless of the outcome.Signals that aTestDescriptor
published a reporting entry.Signals that the execution of aTestDescriptor
has been skipped.Signals that the execution of aTestDescriptor
has started. -
Method Summary
-
Enum Constant Details
-
DYNAMIC_TEST_REGISTERED
Signals that aTestDescriptor
has been dynamically registered. -
SKIPPED
Signals that the execution of aTestDescriptor
has been skipped. -
STARTED
Signals that the execution of aTestDescriptor
has started. -
FINISHED
Signals that the execution of aTestDescriptor
has finished, regardless of the outcome. -
REPORTING_ENTRY_PUBLISHED
Signals that aTestDescriptor
published a reporting entry.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-