[LC] rename lightClasses/lightClasses to lightClasses/lightClassByFqName

This commit is contained in:
Dmitrii Gridin
2022-12-22 13:36:16 +01:00
committed by teamcity
parent 81a939409a
commit 742c3de112
235 changed files with 6 additions and 6 deletions
@@ -0,0 +1,44 @@
public abstract interface Primitives /* Primitives*/ {
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Boolean getNullableBool();// getNullableBool()
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Byte getNullableByte();// getNullableByte()
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Character getNullableChar();// getNullableChar()
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Double getNullableDouble();// getNullableDouble()
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Float getNullableFloat();// getNullableFloat()
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Integer getNullableInt();// getNullableInt()
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Long getNullableLong();// getNullableLong()
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Short getNullableShort();// getNullableShort()
public abstract boolean getBool();// getBool()
public abstract byte getByte();// getByte()
public abstract char getChar();// getChar()
public abstract double getDouble();// getDouble()
public abstract float getFloat();// getFloat()
public abstract int getInt();// getInt()
public abstract int int(int);// int(int)
public abstract long getLong();// getLong()
public abstract short getShort();// getShort()
}