[LC] rename lightClasses/lightClasses to lightClasses/lightClassByFqName
This commit is contained in:
Vendored
+44
@@ -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()
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user