public static enum FormatError.Severity extends java.lang.Enum<FormatError.Severity>
| Enum Constant and Description |
|---|
ERROR
The error indicates the script is severely flawed.
|
WARNING
The error is unexpected, but can be worked around.
|
| Modifier and Type | Method and Description |
|---|---|
static FormatError.Severity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormatError.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormatError.Severity WARNING
public static final FormatError.Severity ERROR
public static FormatError.Severity[] values()
for (FormatError.Severity c : FormatError.Severity.values()) System.out.println(c);
public static FormatError.Severity valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2012. All Rights Reserved.