mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
package test
|
|
|
|
public final enum class StaticMembersInEnum : kotlin.Enum<test.StaticMembersInEnum> {
|
|
private constructor StaticMembersInEnum()
|
|
public final override /*1*/ /*fake_override*/ fun name(): kotlin.String
|
|
public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int
|
|
|
|
public class object <class-object-for-StaticMembersInEnum> {
|
|
private constructor <class-object-for-StaticMembersInEnum>()
|
|
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.StaticMembersInEnum
|
|
public final /*synthesized*/ fun values(): kotlin.Array<test.StaticMembersInEnum>
|
|
}
|
|
|
|
public enum entry ENTRY : test.StaticMembersInEnum {
|
|
private constructor ENTRY()
|
|
public final override /*1*/ /*fake_override*/ fun name(): kotlin.String
|
|
public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int
|
|
|
|
public class object <class-object-for-ENTRY> : test.StaticMembersInEnum.ENTRY {
|
|
private constructor <class-object-for-ENTRY>()
|
|
public final override /*1*/ /*fake_override*/ fun name(): kotlin.String
|
|
public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int
|
|
}
|
|
}
|
|
}
|
|
|
|
package test.StaticMembersInEnum {
|
|
public val CONSTANT: test.StaticMembersInEnum
|
|
public var STATIC_FIELD: kotlin.Int
|
|
public open fun foo(): kotlin.Unit
|
|
public open fun valueOf(/*0*/ p0: kotlin.Int): kotlin.Unit
|
|
public open fun values(/*0*/ p0: kotlin.Int): kotlin.Unit
|
|
}
|