Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/Primitives.java
2014-08-13 17:19:56 +04:00

44 lines
958 B
Java

public interface Primitives {
int $$int /* Real name is 'int' */(@jet.runtime.typeinfo.JetValueParameter(name = "x") int x);
@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();
}