public static enum BeforeInterfaceOperation.BeforeInterfaceOperationType extends Enum<BeforeInterfaceOperation.BeforeInterfaceOperationType>
文件名:BeforeInterfaceOperation.java
用途: 定义接口前置操作类型枚举
编码时间:2022年8月1日 上午8:11:19
修改时间:2022年8月1日 上午8:11:19
| Enum Constant and Description |
|---|
FUNCTION
执行自定义方法
|
INTERFACE
执行接口
|
SQL
执行SQL
|
| Modifier and Type | Method and Description |
|---|---|
static BeforeInterfaceOperation.BeforeInterfaceOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeforeInterfaceOperation.BeforeInterfaceOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeforeInterfaceOperation.BeforeInterfaceOperationType INTERFACE
public static final BeforeInterfaceOperation.BeforeInterfaceOperationType SQL
public static final BeforeInterfaceOperation.BeforeInterfaceOperationType FUNCTION
public static BeforeInterfaceOperation.BeforeInterfaceOperationType[] values()
for (BeforeInterfaceOperation.BeforeInterfaceOperationType c : BeforeInterfaceOperation.BeforeInterfaceOperationType.values()) System.out.println(c);
public static BeforeInterfaceOperation.BeforeInterfaceOperationType 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 © 2024. All rights reserved.