public enum SummaryStatus extends Enum<SummaryStatus>
Enum Constant and Description |
---|
Impaired |
Initializing |
InsufficientData |
NotApplicable |
Ok |
Modifier and Type | Method and Description |
---|---|
static SummaryStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static SummaryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SummaryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SummaryStatus Ok
public static final SummaryStatus Impaired
public static final SummaryStatus InsufficientData
public static final SummaryStatus NotApplicable
public static final SummaryStatus Initializing
public static SummaryStatus[] values()
for (SummaryStatus c : SummaryStatus.values()) System.out.println(c);
public static SummaryStatus 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 toString()
toString
in class Enum<SummaryStatus>
public static SummaryStatus fromValue(String value)
value
- real valueCopyright © 2010–2020. All rights reserved.