e39dc9b768
* drop @NotNull annotation from parameter * add NullPointerException to throws ^KT-55497 Fixed
15 lines
428 B
Java
Vendored
15 lines
428 B
Java
Vendored
public enum E /* p.E*/ {
|
|
@kotlin.Deprecated(message = "a") Entry1,
|
|
Entry2,
|
|
@kotlin.Deprecated(message = "b") Entry3;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static p.E valueOf(java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(java.lang.String)
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static p.E[] values();// values()
|
|
|
|
private E();// .ctor()
|
|
|
|
}
|