commonkeys.java

来自「梦界家园程序开发基底框架」· Java 代码 · 共 29 行

JAVA
29
字号
package jm.net.common;

/**
 * <p>Title: JM</p>
 *
 * <p>Copyright: Copyright (c) 2004-2006</p>
 *
 * <p>Company: 1SHome</p>
 *
 * <p>@author Spook</p>
 *
 * @version 1.2.5.2
 * @see JDK 1.5.0.6
 */
public interface CommonKeys {
    public static final String CONNECT_CLASS_NAME = "CLASS";
    public static final String CONNECT_HOST_NAME = "HOST";
    public static final String CONNECT_BUFFER_SIZE = "SIZE";

    public final static int SIZE_HK = 512;
    public final static int SIZE_1K = 1024;
    public final static int SIZE_2K = 1024 * 2;
    public final static int SIZE_5K = 1024 * 5;
    public final static int SIZE_10K = 1024 * 10;
    public final static int SIZE_20K = 1024 * 20;
    public final static int SIZE_50K = 1024 * 50;
    public final static int SIZE_100K = 1024 * 100;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?