public static enum MigrationReport.Level extends Enum<MigrationReport.Level>
| Enum Constant and Description |
|---|
ERROR
Represents a migration step that has to be done manually by the app developer.
|
WARN
Represents a migration step that has to be done manually by the app developer, but the application would work as intended
even if this item is not assessed.
|
| Modifier and Type | Method and Description |
|---|---|
static MigrationReport.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MigrationReport.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MigrationReport.Level ERROR
public static final MigrationReport.Level WARN
public static MigrationReport.Level[] values()
for (MigrationReport.Level c : MigrationReport.Level.values()) System.out.println(c);
public static MigrationReport.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 © 2018 MuleSoft Inc. All rights reserved.