Enum OverviewBean.NoProjectsReason
- java.lang.Object
-
- java.lang.Enum<OverviewBean.NoProjectsReason>
-
- jetbrains.buildServer.controllers.overview.OverviewBean.NoProjectsReason
-
- All Implemented Interfaces:
Serializable
,Comparable<OverviewBean.NoProjectsReason>
- Enclosing class:
- OverviewBean
public static enum OverviewBean.NoProjectsReason extends Enum<OverviewBean.NoProjectsReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_ACCESSIBLE_PROJECTS
NO_PROJECTS_IN_SYSTEM
NO_VISIBLE_PROJECTS
SUCCESSFUL_HIDDEN
UNKNOWN_REASON
VISIBLE_PROJECTS_ARCHIVED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OverviewBean.NoProjectsReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static OverviewBean.NoProjectsReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_PROJECTS_IN_SYSTEM
public static final OverviewBean.NoProjectsReason NO_PROJECTS_IN_SYSTEM
-
NO_ACCESSIBLE_PROJECTS
public static final OverviewBean.NoProjectsReason NO_ACCESSIBLE_PROJECTS
-
NO_VISIBLE_PROJECTS
public static final OverviewBean.NoProjectsReason NO_VISIBLE_PROJECTS
-
VISIBLE_PROJECTS_ARCHIVED
public static final OverviewBean.NoProjectsReason VISIBLE_PROJECTS_ARCHIVED
-
SUCCESSFUL_HIDDEN
public static final OverviewBean.NoProjectsReason SUCCESSFUL_HIDDEN
-
UNKNOWN_REASON
public static final OverviewBean.NoProjectsReason UNKNOWN_REASON
-
-
Method Detail
-
values
public static OverviewBean.NoProjectsReason[] 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 (OverviewBean.NoProjectsReason c : OverviewBean.NoProjectsReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OverviewBean.NoProjectsReason 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
-
-