mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
In case Java enum has an abstract member, it has the ACC_ABSTRACT flag set in the bytecode. However, we should still load it with final modality to be consistent with Kotlin enums which are always considered final #KT-23426 Fixed
21 lines
995 B
Plaintext
Vendored
21 lines
995 B
Plaintext
Vendored
package test
|
|
|
|
public fun useEnum(): kotlin.String!
|
|
|
|
public final enum class AbstractEnum : kotlin.Enum<test.AbstractEnum!> {
|
|
enum entry ONE
|
|
|
|
private constructor AbstractEnum()
|
|
public final /*fake_override*/ val name: kotlin.String
|
|
public final /*fake_override*/ val ordinal: kotlin.Int
|
|
protected final /*fake_override*/ fun clone(): kotlin.Any
|
|
public final /*fake_override*/ fun compareTo(/*0*/ test.AbstractEnum!): kotlin.Int
|
|
protected/*protected and package*/ final /*fake_override*/ /*isHiddenForResolutionEverywhereBesideSupercalls*/ fun finalize(): kotlin.Unit
|
|
public final /*fake_override*/ /*isHiddenForResolutionEverywhereBesideSupercalls*/ fun getDeclaringClass(): java.lang.Class<test.AbstractEnum!>!
|
|
public/*package*/ abstract fun getString(): kotlin.String!
|
|
|
|
// Static members
|
|
public final /*synthesized*/ fun valueOf(/*0*/ kotlin.String): test.AbstractEnum
|
|
public final /*synthesized*/ fun values(): kotlin.Array<test.AbstractEnum>
|
|
}
|