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

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

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

public enum PeakEncoding {
	NO_LOSS_PEAK(16), HIGH_RES_PEAK(12), LOW_RES_PEAK(8);

	private final int value;

	private PeakEncoding(int value) {
		this.value = value;
	}

	public int getValue() {
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy