
public static enum DocumentModeAsserter.Severity extends Enum<DocumentModeAsserter.Severity>
| Enum Constant and Description |
|---|
ERROR
Receive an error message at runtime.
|
IGNORE
No runtime check.
|
WARN
Receive a warning in Development Mode.
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentModeAsserter.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentModeAsserter.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, createValueOfMap, equals, getDeclaringClass, hashCode, name, obfuscatedName, ordinal, toString, valueOf, valueOfpublic static final DocumentModeAsserter.Severity ERROR
public static final DocumentModeAsserter.Severity IGNORE
public static final DocumentModeAsserter.Severity WARN
public static DocumentModeAsserter.Severity[] values()
for (DocumentModeAsserter.Severity c : DocumentModeAsserter.Severity.values()) System.out.println(c);
public static DocumentModeAsserter.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 © 2018. All rights reserved.