mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
44 lines
1.4 KiB
Java
Vendored
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()
|
|
|
|
} |