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

com.puresoltechnologies.purifinity.evaluation.api.QualityLevelParameter Maven / Gradle / Ivy

The newest version!
package com.puresoltechnologies.purifinity.evaluation.api;

import com.puresoltechnologies.commons.domain.LevelOfMeasurement;
import com.puresoltechnologies.commons.domain.ParameterWithArbitraryUnit;
import com.puresoltechnologies.purifinity.evaluation.domain.QualityLevel;

public class QualityLevelParameter extends
		ParameterWithArbitraryUnit {

	private static final long serialVersionUID = -931199455057090001L;

	public static final String NAME = "quality level";

	private static final QualityLevelParameter INSTANCE = new QualityLevelParameter();

	public static QualityLevelParameter getInstance() {
		return INSTANCE;
	}

	private QualityLevelParameter() {
		super(
				NAME,
				"",
				LevelOfMeasurement.INTERVAL,
				"Quality level of file or directory. This is an aggregate parameter of all sub folders and their containing files.",
				QualityLevel.class);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy