Enum UnmuteOptionType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UnmuteOptionType>

    public enum UnmuteOptionType
    extends java.lang.Enum<UnmuteOptionType>
    How a test should be unmuted.
    Since:
    6.1
    Author:
    Leonid Bushuev from JetBrains
    See Also:
    MuteInfo
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BY_TIME
      TeamCity will unmute the test in the specified time.
      MANUALLY
      The test may be unmuted manually.
      WHEN_FIXED
      TeamCity will unmute the test automatically when it is green.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static UnmuteOptionType fromChar​(char code)
      Converts from a one-character code.
      char getCode()
      Converts to a one-character code.
      static UnmuteOptionType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static UnmuteOptionType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.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:
        java.lang.IllegalArgumentException - when the code is invalid.
        See Also:
        getCode()