EnumEntryData

data class EnumEntryData(val declarationContainer: KmClass?, val annotations: Collection<AnnotationSpec>)

Represents relevant information on a Kotlin enum entry.

Constructors

Link copied to clipboard
constructor(declarationContainer: KmClass?, annotations: Collection<AnnotationSpec>)

Properties

Link copied to clipboard
val annotations: Collection<AnnotationSpec>

the annotations for the entry

Link copied to clipboard
val declarationContainer: KmClass?

the KmClass as parsed from the entry's @Metadata annotation.