Enum Class AssertionLogMessageType
java.lang.Object
java.lang.Enum<AssertionLogMessageType>
de.qytera.qtaf.core.log.model.message.AssertionLogMessageType
- All Implemented Interfaces:
Serializable,Comparable<AssertionLogMessageType>,Constable
All TestNG Assertion Types.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUsed for asserting object equality.Used for asserting deep object equality.Used for asserting equality regardless of objects' internal ordering.Used for assertingfalse.Used for asserting object inequality.Used for asserting deep object inequality.Used for asserting objects are notnull.Used for asserting that objects do not share the same reference.Used for asserting objects arenull.Used for asserting that objects share the same reference.Used for assertingtrue. -
Method Summary
Modifier and TypeMethodDescriptionstatic AssertionLogMessageTypeReturns the enum constant of this class with the specified name.static AssertionLogMessageType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ASSERT_EQUALS
Used for asserting object equality. -
ASSERT_EQUALS_DEEP
Used for asserting deep object equality. -
ASSERT_EQUALS_NO_ORDER
Used for asserting equality regardless of objects' internal ordering. -
ASSERT_FALSE
Used for assertingfalse. -
ASSERT_NOT_EQUALS
Used for asserting object inequality. -
ASSERT_NOT_EQUALS_DEEP
Used for asserting deep object inequality. -
ASSERT_NOT_NULL
Used for asserting objects are notnull. -
ASSERT_NOT_SAME
Used for asserting that objects do not share the same reference. -
ASSERT_NULL
Used for asserting objects arenull. -
ASSERT_SAME
Used for asserting that objects share the same reference. -
ASSERT_TRUE
Used for assertingtrue.
-
-
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
-