Enum Class EventType
- All Implemented Interfaces:
Serializable, Comparable<EventType>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSignals that aTestDescriptorhas been dynamically registered.Signals that aTestDescriptorpublished a file entry.Signals that the execution of aTestDescriptorhas finished, regardless of the outcome.Signals that aTestDescriptorpublished a reporting entry.Signals that the execution of aTestDescriptorhas been skipped.Signals that the execution of aTestDescriptorhas started. -
Method Summary
-
Enum Constant Details
-
DYNAMIC_TEST_REGISTERED
Signals that aTestDescriptorhas been dynamically registered.- See Also:
-
SKIPPED
Signals that the execution of aTestDescriptorhas been skipped.- See Also:
-
STARTED
Signals that the execution of aTestDescriptorhas started.- See Also:
-
FINISHED
Signals that the execution of aTestDescriptorhas finished, regardless of the outcome.- See Also:
-
REPORTING_ENTRY_PUBLISHED
Signals that aTestDescriptorpublished a reporting entry.- See Also:
-
FILE_ENTRY_PUBLISHED
Signals that aTestDescriptorpublished a file entry.- Since:
- 1.12
- See Also:
-
-
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
-