Metadata

ID: kotlin-code-style/enum-entry-naming

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

enum class Foo {
    foo,
    bAr,
    Foo_Bar,
}

Compliant Code Examples

enum class Foo {
    FOO,
    Foo,
    FOO_BAR,
    FooBar,
}