?? 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 + -