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

fr.profi.mzdb.model.DataMode Maven / Gradle / Ivy

There is a newer version: 0.0.27
Show newest version
/*
 * Package fr.profi.mzdb.model
 * @author Marc Dubois
 */
package fr.profi.mzdb.model;

// TODO: Auto-generated Javadoc
/**
 * The Enum DataMode.
 * 
 * @author Marc Dubois
 */
public enum DataMode {

	/** The profile. */
	PROFILE(-1),

	/** The centroid. */
	CENTROID(12),

	/** The fitted. */
	FITTED(20);

	/** The value. */
	private final int value;

	/**
	 * Instantiates a new data mode.
	 * 
	 * @param val
	 *            the val
	 */
	private DataMode(int val) {
		value = val;
	}

	/**
	 * Gets the value.
	 * 
	 * @return the value
	 */
	public int getValue() {
		return value;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy