Regenerate rendered descriptors after transforming Enum.values to property
This commit is contained in:
@@ -17,8 +17,9 @@ public interface CustomAnnotation {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.CustomAnnotation.MyEnum!): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.CustomAnnotation.MyEnum>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.CustomAnnotation.MyEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.CustomAnnotation.MyEnum>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.CustomAnnotation.MyEnum>
|
||||
}
|
||||
|
||||
@test.CustomAnnotation.MyAnnotation(value = MyEnum.ONE) public open class MyTest {
|
||||
|
||||
+2
-1
@@ -14,8 +14,9 @@ public open class EnumArgumentWithCustomToString {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.EnumArgumentWithCustomToString.E!): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.EnumArgumentWithCustomToString.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.EnumArgumentWithCustomToString.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumArgumentWithCustomToString.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.EnumArgumentWithCustomToString.E>
|
||||
}
|
||||
|
||||
public final class EnumAnno : kotlin.Annotation {
|
||||
|
||||
+2
-1
@@ -16,6 +16,7 @@ public final enum class EnumConstructorParameter : kotlin.Enum<test.EnumConstruc
|
||||
}
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.EnumConstructorParameter>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.EnumConstructorParameter
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumConstructorParameter>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.EnumConstructorParameter>
|
||||
}
|
||||
|
||||
@@ -19,7 +19,8 @@ public open class NestedEnumArgument {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.NestedEnumArgument.E!): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.NestedEnumArgument.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.NestedEnumArgument.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.NestedEnumArgument.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.NestedEnumArgument.E>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@ public final enum class EnumMembers : kotlin.Enum<test.EnumMembers!> {
|
||||
public open fun first(): kotlin.Boolean
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.EnumMembers>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.EnumMembers
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumMembers>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.EnumMembers>
|
||||
}
|
||||
|
||||
@@ -16,6 +16,7 @@ public open enum class EnumWithSpecializedEntry : kotlin.Enum<test.EnumWithSpeci
|
||||
}
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.EnumWithSpecializedEntry>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.EnumWithSpecializedEntry
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumWithSpecializedEntry>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.EnumWithSpecializedEntry>
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@ public final enum class JavaEnum : kotlin.Enum<test.JavaEnum!> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.JavaEnum!): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.JavaEnum>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.JavaEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.JavaEnum>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.JavaEnum>
|
||||
}
|
||||
|
||||
+2
-1
@@ -26,6 +26,7 @@ public final enum class Enum : kotlin.Enum<test.Enum!> {
|
||||
}
|
||||
|
||||
// Static members
|
||||
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>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.Enum>
|
||||
}
|
||||
|
||||
@@ -12,9 +12,10 @@ public final enum class StaticMembersInEnum : kotlin.Enum<test.StaticMembersInEn
|
||||
// Static members
|
||||
public final val CONSTANT: test.StaticMembersInEnum!
|
||||
public final var STATIC_FIELD: kotlin.Int
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.StaticMembersInEnum>
|
||||
public open fun foo(): kotlin.Unit
|
||||
public open fun valueOf(/*0*/ p0: kotlin.Int): kotlin.Unit
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.StaticMembersInEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.StaticMembersInEnum>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.StaticMembersInEnum>
|
||||
public open fun values(/*0*/ p0: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-1
@@ -29,7 +29,8 @@ public/*package*/ final enum class StaticMembersInEnum : kotlin.Enum<test.Static
|
||||
public final var c: kotlin.Int
|
||||
public final override /*1*/ var d: kotlin.Int
|
||||
public const final override /*1*/ /*fake_override*/ val e: kotlin.Int
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.StaticMembersInEnum>
|
||||
public open fun foo(): kotlin.Unit
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.StaticMembersInEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.StaticMembersInEnum>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.StaticMembersInEnum>
|
||||
}
|
||||
|
||||
+3
-1
@@ -16,8 +16,10 @@ public final enum class E : kotlin.Enum<test.E> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.E): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.E>
|
||||
public final fun <get-values>(): kotlin.Array<test.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
}
|
||||
|
||||
@kotlin.annotation.annotation() public final class EnumOption : kotlin.Annotation {
|
||||
|
||||
+3
-1
@@ -12,8 +12,10 @@ public final enum class E : kotlin.Enum<test.E> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.E): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.E>
|
||||
public final fun <get-values>(): kotlin.Array<test.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
}
|
||||
|
||||
@kotlin.annotation.annotation() public final class EnumAnno : kotlin.Annotation {
|
||||
|
||||
+3
-1
@@ -22,6 +22,8 @@ public final enum class E : kotlin.Enum<test.E> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.E): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.E>
|
||||
public final fun <get-values>(): kotlin.Array<test.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
}
|
||||
|
||||
+3
-1
@@ -10,6 +10,8 @@ public final enum class EnumWithGenericConstructorParameter : kotlin.Enum<test.E
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.EnumWithGenericConstructorParameter): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.EnumWithGenericConstructorParameter>
|
||||
public final fun <get-values>(): kotlin.Array<test.EnumWithGenericConstructorParameter>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.EnumWithGenericConstructorParameter
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumWithGenericConstructorParameter>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.EnumWithGenericConstructorParameter>
|
||||
}
|
||||
|
||||
+3
-1
@@ -10,6 +10,8 @@ public final enum class EnumWithPrimitiveConstructorParameter : kotlin.Enum<test
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.EnumWithPrimitiveConstructorParameter): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.EnumWithPrimitiveConstructorParameter>
|
||||
public final fun <get-values>(): kotlin.Array<test.EnumWithPrimitiveConstructorParameter>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.EnumWithPrimitiveConstructorParameter
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumWithPrimitiveConstructorParameter>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.EnumWithPrimitiveConstructorParameter>
|
||||
}
|
||||
|
||||
@@ -12,8 +12,10 @@ internal final enum class In : kotlin.Enum<test.In> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.In): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.In>
|
||||
public final fun <get-values>(): kotlin.Array<test.In>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.In
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.In>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.In>
|
||||
}
|
||||
|
||||
private final enum class Pr : kotlin.Enum<test.Pr> {
|
||||
@@ -28,8 +30,10 @@ private final enum class Pr : kotlin.Enum<test.Pr> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.Pr): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.Pr>
|
||||
public final fun <get-values>(): kotlin.Array<test.Pr>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.Pr
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.Pr>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.Pr>
|
||||
}
|
||||
|
||||
public final enum class Pu : kotlin.Enum<test.Pu> {
|
||||
@@ -44,6 +48,8 @@ public final enum class Pu : kotlin.Enum<test.Pu> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.Pu): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.Pu>
|
||||
public final fun <get-values>(): kotlin.Array<test.Pu>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.Pu
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.Pu>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.Pu>
|
||||
}
|
||||
|
||||
@@ -20,6 +20,8 @@ public final enum class En : kotlin.Enum<test.En> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.En): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.En>
|
||||
public final fun <get-values>(): kotlin.Array<test.En>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.En
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.En>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.En>
|
||||
}
|
||||
|
||||
@@ -28,6 +28,8 @@ public final enum class Enum : kotlin.Enum<test.Enum> {
|
||||
}
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.Enum>
|
||||
public final fun <get-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>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.Enum>
|
||||
}
|
||||
|
||||
@@ -15,7 +15,9 @@ public final class A {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.A.E): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.A.E>
|
||||
public final fun <get-values>(): kotlin.Array<test.A.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.A.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.A.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.A.E>
|
||||
}
|
||||
}
|
||||
|
||||
+3
-1
@@ -19,7 +19,9 @@ public final class A {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.A.E): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.A.E>
|
||||
public final fun <get-values>(): kotlin.Array<test.A.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.A.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.A.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.A.E>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,8 @@ public final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.MyEnum): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.MyEnum>
|
||||
public final fun <get-values>(): kotlin.Array<test.MyEnum>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.MyEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.MyEnum>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.MyEnum>
|
||||
}
|
||||
|
||||
@@ -14,6 +14,8 @@ public final enum class Test : kotlin.Enum<test.Test> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.Test): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.Test>
|
||||
public final fun <get-values>(): kotlin.Array<test.Test>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.Test
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.Test>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.Test>
|
||||
}
|
||||
|
||||
@@ -26,6 +26,8 @@ public final enum class E : kotlin.Enum<test.E> {
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.E): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val values: kotlin.Array<test.E>
|
||||
public final fun <get-values>(): kotlin.Array<test.E>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.E
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.E>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user