public static enum ValidationError.Severity extends Enum<ValidationError.Severity>
| Modifier and Type | Method and Description |
|---|---|
static ValidationError.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationError.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationError.Severity WARNING
public static final ValidationError.Severity ERROR
public static ValidationError.Severity[] values()
for (ValidationError.Severity c : ValidationError.Severity.values()) System.out.println(c);
public static ValidationError.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.