Since Kotlin doesn't have primitives, how could this interface be implemented?
public interface A {
@NotNull Object get(@NotNull Integer i);
@NotNull Object get(int i);
}
I cannot change the Java code since it's a compiled class file in a binary library.