Enum UnmuteOptionType

    • Enum Constant Detail

      • MANUALLY

        public static final UnmuteOptionType MANUALLY
        The test may be unmuted manually. TeamCity never will unmute this test automatically.
      • WHEN_FIXED

        public static final UnmuteOptionType WHEN_FIXED
        TeamCity will unmute the test automatically when it is green.
      • BY_TIME

        public static final UnmuteOptionType BY_TIME
        TeamCity will unmute the test in the specified time.
    • Method Detail

      • values

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

        public static UnmuteOptionType 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
      • getCode

        public char getCode()
        Converts to a one-character code.
        Returns:
        character code.
        See Also:
        fromChar(char)
      • fromChar

        public static UnmuteOptionType fromChar​(char code)
        Converts from a one-character code.
        Parameters:
        code - one-character code.
        Returns:
        unmute option.
        Throws:
        IllegalArgumentException - when the code is invalid.
        See Also:
        getCode()