wt.projmgmt.admin
Class ProjectHealthStatus

java.lang.Object
  extended bywt.fc.EnumeratedType
      extended bywt.projmgmt.admin.ProjectHealthStatus
All Implemented Interfaces:
EnumeratedType, LocalizableMessage, LocalizableMetadata, Message, Serializable

public class ProjectHealthStatus
extends EnumeratedType
implements Serializable

ProjectHealthStatus is a specialization of EnumeratedType to provide localizable health status values. The localized values for health statuses are maintained in a resource bundle ProjectHealthStatusRB, and its locale derivatives

Supported API: true

Extendable: false

See Also:
EnumeratedType, wt.projmgmt.admin.ProjectHealthStatusRB, Serialized Form

Nested Class Summary
 
Nested classes inherited from class wt.fc.EnumeratedType
 
Field Summary
private static String CLASS_RESOURCE
           
private static String CLASSNAME
           
static ProjectHealthStatus GREEN
          The Project Health Status of Green, which means that the project is under control and is proceeding as planned on the schedule

Supported API: false
private static Hashtable localeSets
           
static ProjectHealthStatus RED
          The Project Health Status of Red, which means the project is in trouble (over budget or behind schedule)

Supported API: false
private static String RESOURCE
           
static ProjectHealthStatus UNAVAILABLE
          The Project Health Status of Unavailable

Supported API: false
private static EnumeratedType[] valueSet
           
static ProjectHealthStatus YELLOW
          The Project Health Status of Yellow, which means that a project is somewhat behind schedule or somewhat at risk

Supported API: false
 
Fields inherited from class wt.fc.EnumeratedType
secretHandshake, SEP_CHAR
 
Fields inherited from interface wt.meta.EnumeratedType
DEFAULT_VALUE, ORDER, SELECTABLE
 
Constructor Summary
protected ProjectHealthStatus()
          Used by sub-classes that need a default constructor.
 
Method Summary
static boolean betterThan(ProjectHealthStatus first, ProjectHealthStatus second)
          Returns true if first status is "better" than second; false otherwise.
protected  EnumeratedType[] getLocaleSet(Locale locale)
          Returns the set of values (instances) for this instance, for the specified locale.
static ProjectHealthStatus getProjectHealthStatusDefault()
          Returns the default value (instance) for the ProjectHealthStatus set.
static ProjectHealthStatus[] getProjectHealthStatusSet()
          Returns a copy of the set of valid values (instances) for the ProjectHealthStatus class.
 EnumeratedType[] getValueSet()
          Returns a copy of the set of valid values (instances) for this instance, for the current user locale.
private static EnumeratedType[] initializeLocaleSet(Locale locale)
           
static ProjectHealthStatus newProjectHealthStatus(int secretHandshake)
          Used by EnumeratedType for constructing instances of ProjectHealthStatus, from a resource bundle.
static ProjectHealthStatus toProjectHealthStatus(String internal_value)
          Returns the ProjectHealthStatus instance for the internal_value argument.
protected  EnumeratedType[] valueSet()
          Returns a reference to the set of valid values (instances) for this instance.
 
Methods inherited from class wt.fc.EnumeratedType
defaultEnumeratedType, dynamicInstance, equals, getAbbreviatedDisplay, getComment, getComment, getDisplay, getDisplay, getFullDisplay, getInternalKey, getLocalizedMessage, getLocalizedValues, getLongDescription, getOrder, getSelectableValueSet, getShortDescription, getShortDescription, getStringValue, getStringValue, getValidSet, getValue, hashCode, instantiateSet, isDefaultValue, isDefaultValue, isPrimaryKey, isSelectable, main, readResolve, toEnumeratedType, toEnumeratedType, toEnumeratedType, toString, validateFriendship
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME

CLASS_RESOURCE

private static final String CLASS_RESOURCE
See Also:
Constant Field Values

valueSet

private static final EnumeratedType[] valueSet

localeSets

private static Hashtable localeSets

GREEN

public static final ProjectHealthStatus GREEN
The Project Health Status of Green, which means that the project is under control and is proceeding as planned on the schedule

Supported API: false


YELLOW

public static final ProjectHealthStatus YELLOW
The Project Health Status of Yellow, which means that a project is somewhat behind schedule or somewhat at risk

Supported API: false


RED

public static final ProjectHealthStatus RED
The Project Health Status of Red, which means the project is in trouble (over budget or behind schedule)

Supported API: false


UNAVAILABLE

public static final ProjectHealthStatus UNAVAILABLE
The Project Health Status of Unavailable

Supported API: false

Constructor Detail

ProjectHealthStatus

protected ProjectHealthStatus()
Used by sub-classes that need a default constructor.

Supported API: false

Method Detail

newProjectHealthStatus

public static ProjectHealthStatus newProjectHealthStatus(int secretHandshake)
                                                  throws IllegalAccessException
Used by EnumeratedType for constructing instances of ProjectHealthStatus, from a resource bundle.

Supported API: false

Parameters:
secretHandshake -
Returns:
ProjectHealthStatus
Throws:
IllegalAccessException

toProjectHealthStatus

public static ProjectHealthStatus toProjectHealthStatus(String internal_value)
                                                 throws WTInvalidParameterException
Returns the ProjectHealthStatus instance for the internal_value argument.

Supported API: true

Parameters:
internal_value - The internal (persistent) value for a valid instance of ProjectHealthStatus.
Returns:
ProjectHealthStatus
Throws:
WTInvalidParameterException

getProjectHealthStatusDefault

public static ProjectHealthStatus getProjectHealthStatusDefault()
Returns the default value (instance) for the ProjectHealthStatus set.

Supported API: true

Returns:
ProjectHealthStatus

getProjectHealthStatusSet

public static ProjectHealthStatus[] getProjectHealthStatusSet()
Returns a copy of the set of valid values (instances) for the ProjectHealthStatus class.

Supported API: true

Returns:
ProjectHealthStatus[]

getValueSet

public EnumeratedType[] getValueSet()
Returns a copy of the set of valid values (instances) for this instance, for the current user locale.

Supported API: true

Specified by:
getValueSet in class EnumeratedType
Returns:
EnumeratedType[]

valueSet

protected EnumeratedType[] valueSet()
Returns a reference to the set of valid values (instances) for this instance.

Supported API: false

Specified by:
valueSet in class EnumeratedType
Returns:
EnumeratedType[]

getLocaleSet

protected EnumeratedType[] getLocaleSet(Locale locale)
Returns the set of values (instances) for this instance, for the specified locale.

Supported API: false

Specified by:
getLocaleSet in class EnumeratedType
Parameters:
locale -
Returns:
EnumeratedType[]

initializeLocaleSet

private static EnumeratedType[] initializeLocaleSet(Locale locale)
                                             throws Throwable
Parameters:
locale -
Returns:
EnumeratedType[]
Throws:
Throwable

betterThan

public static boolean betterThan(ProjectHealthStatus first,
                                 ProjectHealthStatus second)
Returns true if first status is "better" than second; false otherwise.