public static enum DDInterceptor.ACTION extends Enum<DDInterceptor.ACTION>
| 枚举常量和说明 |
|---|
COLUMN_ALTER |
COLUMN_CREATE |
COLUMN_DROP |
COLUMN_RENAME |
TABLE_ALTER |
TABLE_CREATE |
TABLE_DROP |
TABLE_RENAME |
| 限定符和类型 | 方法和说明 |
|---|---|
static DDInterceptor.ACTION |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static DDInterceptor.ACTION[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final DDInterceptor.ACTION TABLE_CREATE
public static final DDInterceptor.ACTION TABLE_ALTER
public static final DDInterceptor.ACTION TABLE_DROP
public static final DDInterceptor.ACTION TABLE_RENAME
public static final DDInterceptor.ACTION COLUMN_CREATE
public static final DDInterceptor.ACTION COLUMN_ALTER
public static final DDInterceptor.ACTION COLUMN_DROP
public static final DDInterceptor.ACTION COLUMN_RENAME
public static DDInterceptor.ACTION[] values()
for (DDInterceptor.ACTION c : DDInterceptor.ACTION.values()) System.out.println(c);
public static DDInterceptor.ACTION valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.