📄 debuglevel.java
字号:
package com.javaunderground.jdbc;/** * Title: * Description: * Copyright: Copyright (c) * Company: * @author * @version 1.1 */public class DebugLevel { //private constructor keeps all instances within class private DebugLevel(){ } //only allowed values for debugging /** * Turn debugging off */ public static DebugLevel OFF = new DebugLevel(); /** * Turn debugging on */ public static DebugLevel ON = new DebugLevel(); /** * Set debugging to verbose */ public static DebugLevel VERBOSE = new DebugLevel();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -