public enum StatusClass extends Enum<StatusClass>
| Enum Constant and Description |
|---|
MAJOR_ISSUES
Major issues, e.g.
|
MINOR_ISSUES
Only minor issues, e.g.
|
NO_STATUS
No status possible, e.g.
|
OK
Everything is ok.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDashboardClass()
Gets the style for the dashboard table.
|
String |
getFoundationClass()
Returns the style (css class) for foundation.
|
String |
getMessage()
Gets the textual representation of the status.
|
static StatusClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusClass OK
public static final StatusClass MAJOR_ISSUES
public static final StatusClass MINOR_ISSUES
public static final StatusClass NO_STATUS
public static StatusClass[] values()
for (StatusClass c : StatusClass.values()) System.out.println(c);
public static StatusClass valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getFoundationClass()
public String getDashboardClass()
public String getMessage()
Copyright © 2013-2015. All Rights Reserved.