public static enum ProblemDefinition.Severity extends Enum<ProblemDefinition.Severity>
Enum.ordinal()
values are increasing integers.Modifier and Type | Method and Description |
---|---|
static ProblemDefinition.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProblemDefinition.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProblemDefinition.Severity NONE
public static final ProblemDefinition.Severity INFO
public static final ProblemDefinition.Severity WARNING
public static final ProblemDefinition.Severity ERROR
public static ProblemDefinition.Severity[] values()
for (ProblemDefinition.Severity c : ProblemDefinition.Severity.values()) System.out.println(c);
public static ProblemDefinition.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 nullCopyright © 2010–2016 Planetary Data System. All rights reserved.