Enum RestApiAssertionType

    • Enum Constant Detail

      • CLASS_MUST_BE_INTERFACE

        public static final RestApiAssertionType CLASS_MUST_BE_INTERFACE
        Class must be interface rest api assertion type.
      • SAME_METHOD_SIZE

        public static final RestApiAssertionType SAME_METHOD_SIZE
        Same method size rest api assertion type.
      • METHOD_MUST_NOT_BE_NULL

        public static final RestApiAssertionType METHOD_MUST_NOT_BE_NULL
        Method must not be null rest api assertion type.
      • SAME_ANNOTATION_SIZE

        public static final RestApiAssertionType SAME_ANNOTATION_SIZE
        Same annotation size rest api assertion type.
      • ANNOTATION_MUST_NOT_BE_NULL

        public static final RestApiAssertionType ANNOTATION_MUST_NOT_BE_NULL
        Annotation must not be null rest api assertion type.
      • SAME_ANNOTATION_ATTRIBUTES_SIZE

        public static final RestApiAssertionType SAME_ANNOTATION_ATTRIBUTES_SIZE
        Same annotation attributes size rest api assertion type.
      • SAME_ANNOTATION_ATTRIBUTE_VALUE

        public static final RestApiAssertionType SAME_ANNOTATION_ATTRIBUTE_VALUE
        Same annotation attribute value rest api assertion type.
    • Method Detail

      • values

        public static RestApiAssertionType[] 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 (RestApiAssertionType c : RestApiAssertionType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RestApiAssertionType 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