constants.java

来自「httptunnel.jar httptunnel java 源码」· Java 代码 · 共 27 行

JAVA
27
字号
/*
 * Copyright (C) 2001 Ciaran Treanor <ciaran@codeloop.com>
 *
 * Distributable under GPL license.
 * See terms of license at gnu.org.
 *
 * $Id: Constants.java,v 1.1 2004/07/22 09:34:10 saxon64 Exp $
 */
package net.jumperz.ext.org.jrobin.core.jrrd;

interface Constants {

	int DS_NAM_SIZE = 20;
	int DST_SIZE = 20;
	int CF_NAM_SIZE = 20;
	int LAST_DS_LEN = 30;
	static String COOKIE = "RRD";
	static String VERSION = "0001";
	double FLOAT_COOKIE = 8.642135E130;
	static byte[] FLOAT_COOKIE_BIG_ENDIAN = {0x5B, 0x1F, 0x2B, 0x43,
											 (byte) 0xC7, (byte) 0xC0, 0x25,
											 0x2F};
	static byte[] FLOAT_COOKIE_LITTLE_ENDIAN = {0x2F, 0x25, (byte) 0xC0,
												(byte) 0xC7, 0x43, 0x2B, 0x1F,
												0x5B};
}

⌨️ 快捷键说明

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