Importance

enum Importance(val value: String) : Enum<Importance>

Specifies the importance of this location in understanding the code flow in which it occurs. The order from most to least important is "essential", "important", "unimportant". Default: "important".

Constructors

Link copied to clipboard
private fun Importance(value: String)

Entries

Link copied to clipboard
Essential("essential")
Link copied to clipboard
Important("important")
Link copied to clipboard
Unimportant("unimportant")

Properties

Link copied to clipboard
val name: String
Link copied to clipboard
val ordinal: Int
Link copied to clipboard
val value: String

Sources

Link copied to clipboard