final case class Relevance(value: Int) extends AnyVal with Product with Serializable
Describes the overall relevance of a finding.
When calculating the relevance of a finding you should take all properties of the associated issue into consideration:
- kind of issue
- category of issue
- accuracy of the analysis
- value
A value between 0 (undetermined), 1 (not relevant) and 100 (absolutely relevant).
- Source
- Relevance.scala
- Alphabetic
- By Inheritance
- Relevance
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Relevance(value: Int)
- value
A value between 0 (undetermined), 1 (not relevant) and 100 (absolutely relevant).
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def merge(other: Relevance): Relevance
- def name: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def toAnsiColoredString: String
- def toEclipseConsoleString: String
- def toHTMLColor: String
The lower the value, the "whiter" the color.
The lower the value, the "whiter" the color. If the value is 100 then the color will be black.
- def toIDL: JsValue
- val value: Int