mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 08:31:31 +00:00
33 lines
1.2 KiB
Plaintext
Vendored
33 lines
1.2 KiB
Plaintext
Vendored
package test
|
|
|
|
public final enum class Enum : kotlin.Enum<test.Enum!> {
|
|
enum entry A
|
|
|
|
enum entry B
|
|
|
|
enum entry C
|
|
|
|
private constructor Enum()
|
|
public final override /*1*/ /*fake_override*/ val name: kotlin.String
|
|
public final override /*1*/ /*fake_override*/ val ordinal: kotlin.Int
|
|
protected final override /*1*/ /*fake_override*/ fun clone(): kotlin.Any
|
|
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.Enum!): kotlin.Int
|
|
|
|
public open inner class Inner {
|
|
public constructor Inner()
|
|
public/*package*/ open fun bar(): kotlin.Unit
|
|
public/*package*/ open fun valueOf(/*0*/ p0: kotlin.String!): kotlin.Unit
|
|
}
|
|
|
|
public open class Nested {
|
|
public constructor Nested()
|
|
public/*package*/ open fun foo(): kotlin.Unit
|
|
public/*package*/ open fun values(): kotlin.Unit
|
|
}
|
|
|
|
// Static members
|
|
@kotlin.Deprecated(message = "Use 'values()' function instead", replaceWith = kotlin.ReplaceWith(expression = "this.values()", imports = {})) public final /*synthesized*/ val values: kotlin.Array<test.Enum>
|
|
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.Enum
|
|
public final /*synthesized*/ fun values(): kotlin.Array<test.Enum>
|
|
}
|