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

fr.profi.mzdb.util.primitives.MutableInt Maven / Gradle / Ivy

There is a newer version: 0.0.27
Show newest version
/**
 * This file is part of the mzDB project
 */
package fr.profi.mzdb.util.primitives;

/**
 * @author marco
 * 
 */
public class MutableInt implements Comparable {
	public int value = 1;

	public void inc() {
		++value;
	}

	// @Override
	public int compareTo(MutableInt i) {
		return value - i.value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy