From my experience, there's no such interface readily available in the JDK. Generics only came in late to the Java game. Before that, there was the need to pass around several typed arguments to a callback in a semi-type safe way and without prior knowledge of those arguments structure (I say "semi-type safe" because event listeners were invented to test the event's type and cast as needed). You could not have built that mechanism without generics and they never did re-architect the whole JDK to have generics in mind (except the collections API and a few others). It would have been a massive undertaking with little gains (after all, everything was working as expected).
Hence, the observer/listener pattern that is pervasive on JDK libraries (see java.util.EventObject, java.util.EventListerner and their usages). Java also believes in being a little more verbose during interface definition, when implementing EventListener. For clearer implementations, specialized implementations of that pattern should make the callback method name demonstrate the purpose of the code (which usually also matches the event's name). E.g., ActionEvent#actionPerformed(ActionEvent e).
Another possible for reason for that interface to be absent is that it is not used in the JDK itself. Sometimes you wish for Callback<T> others for Callback<T, V> or even Callback<T, R, V>, etc. Providing those interfaces without any real is use case (inside the JDK) is really not a very design policy. That lack of support for such useful constructs is the main reason why Guava and Apache Commons (among others) exist.
Anyway, I agree with @JB Nizet that you should be using Guava. We didn't specify why and how you are using the interface, so that leaves a lot of room to speculation, but whatever reason, Guava will probably have other functionality that might come in handy.