Enum Match.Type

    • Enum Constant Detail

      • 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 Detail

      • values

        public static Match.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Match.Type c : Match.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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