public static enum DatabaseChangeLog.OnUnknownFileFormat extends Enum<DatabaseChangeLog.OnUnknownFileFormat>
Enum Constant and Description |
---|
FAIL
Fail parsing with an error
|
SKIP
Silently skip unknown files.
|
WARN
Log a warning about the file not being in a recognized format, but continue on
|
Modifier and Type | Method and Description |
---|---|
static DatabaseChangeLog.OnUnknownFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseChangeLog.OnUnknownFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseChangeLog.OnUnknownFileFormat SKIP
public static final DatabaseChangeLog.OnUnknownFileFormat WARN
public static final DatabaseChangeLog.OnUnknownFileFormat FAIL
public static DatabaseChangeLog.OnUnknownFileFormat[] values()
for (DatabaseChangeLog.OnUnknownFileFormat c : DatabaseChangeLog.OnUnknownFileFormat.values()) System.out.println(c);
public static DatabaseChangeLog.OnUnknownFileFormat 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 © 2023 Liquibase.org. All rights reserved.