Enum AutomatedTestingMode

    • Enum Constant Detail

      • TEST_MANAGER_MODE

        public static final AutomatedTestingMode TEST_MANAGER_MODE
        Automated testing run as test manager
      • TEST_CLIENT_MODE

        public static final AutomatedTestingMode TEST_CLIENT_MODE
        Automated testing run as test client
    • Method Detail

      • values

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

        public static AutomatedTestingMode 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
      • getMode

        public String getMode()
        Get string representation for automated testing mode
        Returns:
        automated testing mode, can be null