Back to Intellij Community

EnumEntryName

plugins/kotlin/code-insight/descriptions/resources-en/inspectionDescriptions/EnumEntryName.html

2025.3-rc-2226 B
Original Source

Reports enum entry names that do not follow the recommended naming conventions.

Example:

enum class Foo {
    _Foo,
    foo
  }

To fix the problem rename enum entries to match the recommended naming conventions.