public static enum IncidentChart.Severity extends Enum<IncidentChart.Severity>
| Enum Constant and Description |
|---|
INFORMATIONAL |
SEVERE |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static IncidentChart.Severity |
fromString(String string) |
static IncidentChart.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncidentChart.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncidentChart.Severity SEVERE
public static final IncidentChart.Severity WARNING
public static final IncidentChart.Severity INFORMATIONAL
public static IncidentChart.Severity[] values()
for (IncidentChart.Severity c : IncidentChart.Severity.values()) System.out.println(c);
public static IncidentChart.Severity 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 static IncidentChart.Severity fromString(String string)
Copyright © 2016–2017. All rights reserved.