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