public static enum Validation.Level extends Enum<Validation.Level>
| Enum Constant and Description |
|---|
ERROR
A situation that would prevent the artifact to function correctly.
|
WARN
A situation that even if the artifact would work correctly despite it, it would be much costlier or have some unexpected
effect on some other tools that rely on it.
|
| Modifier and Type | Method and Description |
|---|---|
static Validation.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Validation.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Validation.Level ERROR
public static final Validation.Level WARN
public static Validation.Level[] values()
for (Validation.Level c : Validation.Level.values()) System.out.println(c);
public static Validation.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 © 2025 MuleSoft, Inc.. All rights reserved.