public static enum CommandLineOutputAppender.Mode extends Enum<CommandLineOutputAppender.Mode>
Enum Constant and Description |
---|
FULL_LOG
Outputs all log messages to stdout
|
PIPE_SQL
Command line is expecting to be output SQL to stdout that may be piped to a file.
|
STANDARD
"Normal" mode where only user-level messages are printed to stdout.
|
Modifier and Type | Method and Description |
---|---|
static CommandLineOutputAppender.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandLineOutputAppender.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandLineOutputAppender.Mode STANDARD
public static final CommandLineOutputAppender.Mode PIPE_SQL
public static final CommandLineOutputAppender.Mode FULL_LOG
public static CommandLineOutputAppender.Mode[] values()
for (CommandLineOutputAppender.Mode c : CommandLineOutputAppender.Mode.values()) System.out.println(c);
public static CommandLineOutputAppender.Mode 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 Liquibase.org. All rights reserved.