[LC] fix signature of 'Enum.valueOf()'
* drop @NotNull annotation from parameter * add NullPointerException to throws ^KT-55497 Fixed
This commit is contained in:
committed by
Space Team
parent
7d0c093da7
commit
e39dc9b768
@@ -4,7 +4,7 @@ public enum E /* p.E*/ {
|
||||
@kotlin.Deprecated(message = "b") Entry3;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static p.E valueOf(@org.jetbrains.annotations.NotNull() java.lang.String) throws java.lang.IllegalArgumentException;// valueOf(java.lang.String)
|
||||
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()
|
||||
|
||||
Reference in New Issue
Block a user