Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/Primitives.java
Igor Yakovlev 309bf49a83 Update lightclass tests renderer
+mute invalid old light classes tests
2020-09-11 12:49:04 +03:00

44 lines
1.4 KiB
Java
Vendored

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()
}