debuglevel.java
来自「Local Lucene ==================== Prov」· Java 代码 · 共 35 行
JAVA
35 行
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 + =
减小字号Ctrl + -
显示快捷键?