mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
26 lines
1.0 KiB
Plaintext
Vendored
26 lines
1.0 KiB
Plaintext
Vendored
package test
|
|
|
|
public open class DefaultArgumentInEnumConstructor {
|
|
public constructor DefaultArgumentInEnumConstructor()
|
|
|
|
// Static members
|
|
public/*package*/ final var entry: test.K!
|
|
}
|
|
|
|
public final enum class K : kotlin.Enum<test.K> {
|
|
enum entry ENTRY
|
|
|
|
private constructor K(/*0*/ kotlin.String = ...)
|
|
private final val default: kotlin.String
|
|
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.K): 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.K!>!
|
|
|
|
// Static members
|
|
public final /*synthesized*/ fun valueOf(/*0*/ kotlin.String): test.K
|
|
public final /*synthesized*/ fun values(): kotlin.Array<test.K>
|
|
}
|