edu.jhu.ece.iacl.jist.pipeline
Enum DevelopmentStatus

java.lang.Object
  extended by java.lang.Enum<DevelopmentStatus>
      extended by edu.jhu.ece.iacl.jist.pipeline.DevelopmentStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DevelopmentStatus>

public enum DevelopmentStatus
extends java.lang.Enum<DevelopmentStatus>

The Enum DevelopmentStatus.


Enum Constant Summary
ALPHA
          The ALPHA.
BETA
          The BETA.
Dep
          The Deprecated.
NotFunctional
          The Not functional.
RC
          The RC.
Release
          The Release.
UNKNOWN
          The UNKNOWN.
 
Method Summary
static DevelopmentStatus valueOf(java.lang.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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWN

public static final DevelopmentStatus UNKNOWN
The UNKNOWN.


ALPHA

public static final DevelopmentStatus ALPHA
The ALPHA.


BETA

public static final DevelopmentStatus BETA
The BETA.


RC

public static final DevelopmentStatus RC
The RC.


Release

public static final DevelopmentStatus Release
The Release.


Dep

public static final DevelopmentStatus Dep
The Deprecated.


NotFunctional

public static final DevelopmentStatus NotFunctional
The Not functional.

Method Detail

values

public static DevelopmentStatus[] 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 (DevelopmentStatus c : DevelopmentStatus.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DevelopmentStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null