public enum UnmuteOptionType extends java.lang.Enum<UnmuteOptionType>
MuteInfo
Enum Constant and 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.
|
Modifier and Type | Method and 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.
|
public static final UnmuteOptionType MANUALLY
public static final UnmuteOptionType WHEN_FIXED
public static final UnmuteOptionType BY_TIME
public static UnmuteOptionType[] values()
for (UnmuteOptionType c : UnmuteOptionType.values()) System.out.println(c);
public static UnmuteOptionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic char getCode()
fromChar(char)
public static UnmuteOptionType fromChar(char code)
code
- one-character code.java.lang.IllegalArgumentException
- when the code is invalid.getCode()