Files
kotlin-fork/compiler/testData/asJava/lightClasses/lightClassByPsi/defaultParameterValue.java
T
Dmitrii Gridin af5f76048b [SLC] AbstractSymbolLightClassesByPsiTest: add more stable order
Now more diff between sources and libraries are readable.
Also prefer .descriptors to .fir as FIR is a first-class support

^KT-62892
2024-01-03 21:35:12 +00:00

122 lines
4.3 KiB
Java
Vendored

public enum Em /* Em*/ {
FOO,
BAR;
@org.jetbrains.annotations.NotNull()
public static Em valueOf(java.lang.String) throws java.lang.IllegalArgumentException, java.lang.NullPointerException;// valueOf(java.lang.String)
@org.jetbrains.annotations.NotNull()
public static Em[] values();// values()
@org.jetbrains.annotations.NotNull()
public static kotlin.enums.EnumEntries<Em> getEntries();// getEntries()
private Em();// .ctor()
}
public final class Foo /* Foo*/ {
@org.jetbrains.annotations.NotNull()
private final Em em = Em.BAR /* initializer type: Em */;
@org.jetbrains.annotations.NotNull()
private final Em[] emarr = {Em.FOO, Em.BAR} /* initializer type: null */;
@org.jetbrains.annotations.NotNull()
private final double[] darr = {7.3} /* initializer type: null */;
@org.jetbrains.annotations.NotNull()
private final int[] iarr = {1, 2, 3} /* initializer type: null */;
@org.jetbrains.annotations.NotNull()
private final java.lang.Class<?> cl;
@org.jetbrains.annotations.NotNull()
private final java.lang.Class<?>[] clarr = {} /* initializer type: null */;
@org.jetbrains.annotations.NotNull()
private final java.lang.String s = "foo" /* initializer type: java.lang.String */;
@org.jetbrains.annotations.NotNull()
private final java.lang.String[] empty = {} /* initializer type: null */;
@org.jetbrains.annotations.NotNull()
private final java.lang.String[] sarr = {"a", "bc"} /* initializer type: null */;
@org.jetbrains.annotations.NotNull()
private final long[] larr = {-1L, 0L, 1L} /* initializer type: null */;
private final boolean z = true /* initializer type: boolean */;
private final byte b = 1 /* initializer type: int */;
private final char c = 'c' /* initializer type: char */;
private final char c2 = '\n' /* initializer type: char */;
private final double d = -1.0 /* initializer type: double */;
private final float f = 1.0f /* initializer type: float */;
private final int i = 10 /* initializer type: int */;
private final long l = -10L /* initializer type: long */;
private final short sh = 10 /* initializer type: int */;
@org.jetbrains.annotations.NotNull()
public final Em getEm();// getEm()
@org.jetbrains.annotations.NotNull()
public final Em[] getEmarr();// getEmarr()
@org.jetbrains.annotations.NotNull()
public final double[] getDarr();// getDarr()
@org.jetbrains.annotations.NotNull()
public final int[] getIarr();// getIarr()
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?> getCl();// getCl()
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?>[] getClarr();// getClarr()
@org.jetbrains.annotations.NotNull()
public final java.lang.String getS();// getS()
@org.jetbrains.annotations.NotNull()
public final java.lang.String[] getEmpty();// getEmpty()
@org.jetbrains.annotations.NotNull()
public final java.lang.String[] getSarr();// getSarr()
@org.jetbrains.annotations.NotNull()
public final long[] getLarr();// getLarr()
public Foo();// .ctor()
public Foo(boolean, byte, char, char, short, int, long, float, double, @org.jetbrains.annotations.NotNull() java.lang.String, @org.jetbrains.annotations.NotNull() int[], @org.jetbrains.annotations.NotNull() long[], @org.jetbrains.annotations.NotNull() double[], @org.jetbrains.annotations.NotNull() java.lang.String[], @org.jetbrains.annotations.NotNull() java.lang.Class<?>, @org.jetbrains.annotations.NotNull() java.lang.Class<?>[], @org.jetbrains.annotations.NotNull() Em, @org.jetbrains.annotations.NotNull() Em[], @org.jetbrains.annotations.NotNull() java.lang.String[]);// .ctor(boolean, byte, char, char, short, int, long, float, double, java.lang.String, int[], long[], double[], java.lang.String[], java.lang.Class<?>, java.lang.Class<?>[], Em, Em[], java.lang.String[])
public final boolean getZ();// getZ()
public final byte getB();// getB()
public final char getC();// getC()
public final char getC2();// getC2()
public final double getD();// getD()
public final float getF();// getF()
public final int getI();// getI()
public final long getL();// getL()
public final short getSh();// getSh()
public final void bar(@org.jetbrains.annotations.NotNull() int[]);// bar(int[])
public final void foo(int);// foo(int)
}