Enum Class Match.Type

java.lang.Object
java.lang.Enum<Match.Type>
com.intuit.karate.Match.Type
All Implemented Interfaces:
Serializable, Comparable<Match.Type>, Constable
Enclosing class:
Match

public static enum Match.Type extends Enum<Match.Type>
  • Enum Constant Details

    • EQUALS

      public static final Match.Type EQUALS
    • NOT_EQUALS

      public static final Match.Type NOT_EQUALS
    • CONTAINS

      public static final Match.Type CONTAINS
    • NOT_CONTAINS

      public static final Match.Type NOT_CONTAINS
    • CONTAINS_ONLY

      public static final Match.Type CONTAINS_ONLY
    • CONTAINS_ANY

      public static final Match.Type CONTAINS_ANY
    • CONTAINS_DEEP

      public static final Match.Type CONTAINS_DEEP
    • CONTAINS_ONLY_DEEP

      public static final Match.Type CONTAINS_ONLY_DEEP
    • CONTAINS_ANY_DEEP

      public static final Match.Type CONTAINS_ANY_DEEP
    • EACH_EQUALS

      public static final Match.Type EACH_EQUALS
    • EACH_NOT_EQUALS

      public static final Match.Type EACH_NOT_EQUALS
    • EACH_CONTAINS

      public static final Match.Type EACH_CONTAINS
    • EACH_NOT_CONTAINS

      public static final Match.Type EACH_NOT_CONTAINS
    • EACH_CONTAINS_ONLY

      public static final Match.Type EACH_CONTAINS_ONLY
    • EACH_CONTAINS_ANY

      public static final Match.Type EACH_CONTAINS_ANY
    • EACH_CONTAINS_DEEP

      public static final Match.Type EACH_CONTAINS_DEEP
  • Method Details

    • values

      public static Match.Type[] 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

      public static Match.Type valueOf(String name)
      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 name
      NullPointerException - if the argument is null