|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DevelopmentStatus>
rcf.core.framework.source.DevelopmentStatus
@Revision(value="$Revision: 1.5 $",
date="$Date: 2006/12/20 17:21:19 $",
tag="$Name: $")
public enum DevelopmentStatus
An enumeration of the various stages of software project development. Note
that these are used by the Project annotation, and are for informational
purposes. Thus if your development status does not exactly match one of these,
you should approximate.
TODO: Javadoc review, Seal/Finalize
Project,
Projects| Enum Constant Summary | |
|---|---|
Alpha
The code is ready to be distributed to a limited number of knowledgeable users, generally those associated with the development proccess. |
|
Beta
The code is ready to be distributed to a wide range of users, from those associated with the development to those who know little about it. |
|
Candidate
The code is essentially finished and ready for release. |
|
Development
The code is current developement code: buggy and incomplete with the goal of moving to Alpha soon. |
|
Release
The code has been tested, documentated and released. |
|
Research
The code is current research code: buggy, incomplete with no short term intention to be fully usable. |
|
| Method Summary | |
|---|---|
static DevelopmentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DevelopmentStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DevelopmentStatus Research
public static final DevelopmentStatus Development
Alpha soon.
public static final DevelopmentStatus Alpha
public static final DevelopmentStatus Beta
public static final DevelopmentStatus Candidate
Release and the stage
at which performance testing and final bug fixes take place.
public static final DevelopmentStatus Release
status but, this one denotes
that the code is actually ready for widespread use, including by users
entirely unfamiliar with the development process or the language of the code.
| Method Detail |
|---|
public static final DevelopmentStatus[] values()
for(DevelopmentStatus c : DevelopmentStatus.values())
System.out.println(c);
public static DevelopmentStatus valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||