- java.lang.Object
-
- java.lang.Enum<Development.Status>
-
- nbbrd.design.Development.Status
-
- All Implemented Interfaces:
Serializable,Comparable<Development.Status>,IntSupplier
- Enclosing class:
- Development
public static enum Development.Status extends Enum<Development.Status> implements IntSupplier
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AlphaBetaExploratoryPreliminaryReleaseTemporary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAsInt()Integer representation of the frequencystatic Development.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Development.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Temporary
public static final Development.Status Temporary
-
Exploratory
public static final Development.Status Exploratory
-
Preliminary
public static final Development.Status Preliminary
-
Alpha
public static final Development.Status Alpha
-
Beta
public static final Development.Status Beta
-
Release
public static final Development.Status Release
-
-
Method Detail
-
values
public static Development.Status[] 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 (Development.Status c : Development.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Development.Status 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
-
getAsInt
public int getAsInt()
Integer representation of the frequency- Specified by:
getAsIntin interfaceIntSupplier- Returns:
- The number of events by year
-
-