The Java PaperCache client. The client supports all commands described in the wire protocol on the homepage.
import io.papercache.PaperClient;
PaperClient client = new PaperClient("paper://127.0.0.1:3145");
client.set("hello", "world");
String got = client.get("hello");