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

commonMain.com.saveourtool.save.entities.ProjectProblemCritical.kt Maven / Gradle / Ivy

The newest version!
package com.saveourtool.save.entities

import kotlinx.serialization.Serializable

/**
 * Enum of project problem severity
 *
 * The order of the elements is used for sorting
 */
@Serializable
@Suppress("WRONG_DECLARATIONS_ORDER")
enum class ProjectProblemCritical(private val severity: String) {
    /**
     * Low severity
     */
    LOW("Low"),

    /**
     * Middle severity
     */
    MIDDLE("Middle"),

    /**
     * High severity
     */
    HIGH("High"),

    /**
     * Critical severity
     */
    CRITICAL("Critical"),
    ;

    override fun toString(): String = severity
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy