枚举类 LiquibaseProperties.ShowSummaryOutput
java.lang.Object
java.lang.Enum<LiquibaseProperties.ShowSummaryOutput>
org.springframework.boot.autoconfigure.liquibase.LiquibaseProperties.ShowSummaryOutput
- 封闭类:
LiquibaseProperties
public static enum LiquibaseProperties.ShowSummaryOutput
extends Enum<LiquibaseProperties.ShowSummaryOutput>
Enumeration of destinations to which the summary should be output. Values are the
same as those on
UpdateSummaryOutputEnum
. To maximize backwards
compatibility, the Liquibase enum is not used directly.- 从以下版本开始:
- 3.2.1
-
枚举常量详细资料
-
LOG
Log the summary. -
CONSOLE
Output the summary to the console. -
ALL
Log the summary and output it to the console.
-
-
方法详细资料
-
values
返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同- 返回:
- 包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
-
valueOf
返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- 如果该枚举类没有带有指定名称的常量NullPointerException
- 如果参数为空值
-