ProjectMetric

open class ProjectMetric(    val type: String,     val value: Int,     val priority: Int = -1,     val isDouble: Boolean = false,     val conversionFactor: Int = DEFAULT_FLOAT_CONVERSION_FACTOR)

Anything that can be expressed as a numeric value for projects.

Constructors

Link copied to clipboard
fun ProjectMetric(    type: String,     value: Int,     priority: Int = -1,     isDouble: Boolean = false,     conversionFactor: Int = DEFAULT_FLOAT_CONVERSION_FACTOR)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val conversionFactor: Int
Link copied to clipboard
val isDouble: Boolean = false
Link copied to clipboard
val priority: Int
Link copied to clipboard
val type: String
Link copied to clipboard
val value: Int