Is it possible to access the whole history of the clipboard (hourly, daily etc.) in Java?
After doing some research I've found the following code snippet which accesses the current item of the clipboard only:
import java.awt.HeadlessException;
import java.awt.Toolkit;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.io.IOException;
String data = (String) Toolkit.getDefaultToolkit()
.getSystemClipboard().getData(DataFlavor.stringFlavor);
But I am looking to get all the values in the history. How can I do that?