Enum InapplicableSettings.ReportingLevel
- java.lang.Object
-
- java.lang.Enum<InapplicableSettings.ReportingLevel>
-
- jetbrains.buildServer.serverSide.impl.versionedSettings.InapplicableSettings.ReportingLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<InapplicableSettings.ReportingLevel>
- Enclosing interface:
- InapplicableSettings
public static enum InapplicableSettings.ReportingLevel extends Enum<InapplicableSettings.ReportingLevel>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InapplicableSettings.ReportingLevel
getLevel(String levelName)
Status
getStatus()
boolean
isBuildProblem()
static InapplicableSettings.ReportingLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static InapplicableSettings.ReportingLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFO
public static final InapplicableSettings.ReportingLevel INFO
-
WARN
public static final InapplicableSettings.ReportingLevel WARN
-
FAIL
public static final InapplicableSettings.ReportingLevel FAIL
-
-
Method Detail
-
values
public static InapplicableSettings.ReportingLevel[] 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 (InapplicableSettings.ReportingLevel c : InapplicableSettings.ReportingLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InapplicableSettings.ReportingLevel 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 nameNullPointerException
- if the argument is null
-
getLevel
public static InapplicableSettings.ReportingLevel getLevel(String levelName)
-
getStatus
public Status getStatus()
-
isBuildProblem
public boolean isBuildProblem()
-
-