Enum Type

    • Enum Constant Detail

      • CALLED

        public static final Type CALLED
      • RETRY

        public static final Type RETRY
      • JOB_INFO

        public static final Type JOB_INFO
      • UPLOAD_START

        public static final Type UPLOAD_START
      • UPLOAD_COMPLETE

        public static final Type UPLOAD_COMPLETE
      • MATCH_START

        public static final Type MATCH_START
      • MATCH_COMPLETE

        public static final Type MATCH_COMPLETE
      • DOM_SCRIPT

        public static final Type DOM_SCRIPT
      • CAPTURE_SCREENSHOT

        public static final Type CAPTURE_SCREENSHOT
      • RENDER_STATUS

        public static final Type RENDER_STATUS
      • DOWNLOAD_RESOURCE

        public static final Type DOWNLOAD_RESOURCE
      • PARSE_RESOURCE

        public static final Type PARSE_RESOURCE
      • CHECK_RESOURCE

        public static final Type CHECK_RESOURCE
      • UPLOAD_RESOURCE

        public static final Type UPLOAD_RESOURCE
      • REQUEST_SENT

        public static final Type REQUEST_SENT
      • REQUEST_COMPLETED

        public static final Type REQUEST_COMPLETED
      • REQUEST_FAILED

        public static final Type REQUEST_FAILED
      • CLOSE_BATCH

        public static final Type CLOSE_BATCH
      • TEST_RESULTS

        public static final Type TEST_RESULTS
      • TIMEOUT

        public static final Type TIMEOUT
    • Method Detail

      • values

        public static 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 (Type c : 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 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