📄 statementtype.java
字号:
package com.ibatis.sqlmap.engine.mapping.statement;
public final class StatementType {
public static final StatementType UNKNOWN = new StatementType();
public static final StatementType INSERT = new StatementType();
public static final StatementType UPDATE = new StatementType();
public static final StatementType DELETE = new StatementType();
public static final StatementType SELECT = new StatementType();
public static final StatementType PROCEDURE = new StatementType();
private StatementType() {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -