nl.tudelft.ewi.auta.srf.model.Severity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auta-srf Show documentation
Show all versions of auta-srf Show documentation
A facade for metric script executors
The newest version!
package nl.tudelft.ewi.auta.srf.model;
/**
* The severity of a note.
*/
public enum Severity {
/**
* An observation or remark.
*/
INFO,
/**
* A tip.
*/
TIP,
/**
* A warning.
*/
WARNING,
/**
* A failure.
*/
FAILURE
}