Enum AssertionType

java.lang.Object
java.lang.Enum<AssertionType>
software.amazon.awscdk.integtests.alpha.AssertionType
All Implemented Interfaces:
Serializable, Comparable<AssertionType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.464Z") @Stability(Experimental) public enum AssertionType extends Enum<AssertionType>
(experimental) The type of assertion to perform.
  • Enum Constant Details

    • EQUALS

      @Stability(Experimental) public static final AssertionType EQUALS
      (experimental) Assert that two values are equal.
    • OBJECT_LIKE

      @Stability(Experimental) public static final AssertionType OBJECT_LIKE
      (experimental) The keys and their values must be present in the target but the target can be a superset.
    • ARRAY_WITH

      @Stability(Experimental) public static final AssertionType ARRAY_WITH
      (experimental) Matches the specified pattern with the array The set of elements must be in the same order as would be found.
  • Method Details

    • values

      public static AssertionType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AssertionType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null