Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/Primitives.java
2015-11-18 13:34:25 +03:00

43 lines
905 B
Java
Vendored

public interface Primitives {
int $$int /* Real name is 'int' */(int i);
@org.jetbrains.annotations.Nullable
java.lang.Boolean getNullableBool();
@org.jetbrains.annotations.Nullable
java.lang.Byte getNullableByte();
@org.jetbrains.annotations.Nullable
java.lang.Short getNullableShort();
@org.jetbrains.annotations.Nullable
java.lang.Character getNullableChar();
@org.jetbrains.annotations.Nullable
java.lang.Integer getNullableInt();
@org.jetbrains.annotations.Nullable
java.lang.Long getNullableLong();
@org.jetbrains.annotations.Nullable
java.lang.Float getNullableFloat();
@org.jetbrains.annotations.Nullable
java.lang.Double getNullableDouble();
boolean getBool();
byte getByte();
short getShort();
char getChar();
int getInt();
long getLong();
float getFloat();
double getDouble();
}