public enum DDLType extends Enum<DDLType> implements SqlExecuteType
public static final DDLType CREATE
public static final DDLType ALTER
public static final DDLType DROP
public static final DDLType TRUNCATE
public static final DDLType GET_META
public static final DDLType RENAME
public static final DDLType COMMENT
public static DDLType[] values()
for (DDLType c : DDLType.values()) System.out.println(c);
public static DDLType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getType()
getType 在接口中 SqlExecuteTypeCopyright © 2024–2025 Dynamic-SQL. All rights reserved.