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

fr.profi.mzdb.XicMethod Maven / Gradle / Ivy

There is a newer version: 0.0.27
Show newest version
package fr.profi.mzdb;

/**
 * @author bouyssie
 *
 */
public enum XicMethod {
	MAX(0), NEAREST(1), SUM(2);

	private final Integer val;

	private XicMethod(Integer val_) {
		this.val = val_;
	}

	@Override
	public String toString() {
		return this.val.toString();
	}
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy