edu.umd.cs.findbugs.cwe.WeaknessSeverity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotbugs Show documentation
Show all versions of spotbugs Show documentation
SpotBugs: Because it's easy!
The newest version!
package edu.umd.cs.findbugs.cwe;
import com.google.gson.annotations.SerializedName;
/**
* Common Weakness Enumeration weakness severity
*
* @author Jeremias Eppler
*/
public enum WeaknessSeverity {
@SuppressWarnings("javadoc")
@SerializedName("none")
NONE,
@SuppressWarnings("javadoc")
@SerializedName("low")
LOW,
@SuppressWarnings("javadoc")
@SerializedName("medium")
MEDIUM,
@SuppressWarnings("javadoc")
@SerializedName("high")
HIGH;
}