All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.freehep.util.io.RunLength Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
// Copyright 2001, FreeHEP.
package org.freehep.util.io;

/**
 * Constants for the RunLength encoding.
 * 
 * @author Mark Donszelmann
 * @version $Id: src/main/java/org/freehep/util/io/RunLength.java 96b41b903496
 *          2005/11/21 19:50:18 duns $
 */
public interface RunLength {

	/**
	 * Maximum run length
	 */
	public static final int LENGTH = 128;

	/**
	 * End of data code
	 */
	public static final int EOD = 128;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy