public static enum CParseErrorType.Severity extends java.lang.Enum<CParseErrorType.Severity>
| Enum Constant | Description |
|---|---|
CRITICAL |
A critical error.
|
ERROR |
An error.
|
WARNING |
A warning.
|
| Modifier and Type | Method | Description |
|---|---|---|
static CParseErrorType.Severity |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static CParseErrorType.Severity[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CParseErrorType.Severity WARNING
public static final CParseErrorType.Severity ERROR
public static final CParseErrorType.Severity CRITICAL
public static CParseErrorType.Severity[] values()
for (CParseErrorType.Severity c : CParseErrorType.Severity.values()) System.out.println(c);
public static CParseErrorType.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 © 2017 <code@io7m.com> http://io7m.com