Ok it took me a while to search this up.
In short, they don't seem to be standarized (much) and they don't see to be documented (much).
The class LookAndFeel is the key. This is the hierarchy:
LookAndFeel
BasicLookAndFeel
- MetalLookAndFeel
- MotifLookAndFeel
- WindowsLookAndFeel
- MultiLookAndFeel
In the BasicLookAndFeel class, you can find the default mappings for actions and key bindings, which would be inherited by all other classes. So you could consider this class to be the standard. You can see that in the creation of the object "defaults", around like 498 for Java 1.4.2_17.
Additional key bindings and overwrites can be found on the implementors, such as WindowsLookAndFeel.
Some of the Standarized names can be found on the DefaultEditorKit class as static fields. Those seem to be safe to use and remap. Their usage can be seen in the WindowsLookAndFeel and MotifLookAndFeel classes. I would feel safe assuming that those actions will stay constant.
So in short, the Actions defined in DefaultEditorKit are unlikely to change. However, the key bindings change completely between L&F implementations. Retrieve the action from the map using DefaultEditorKit.something and it should work across versions. Example from DefaultEditorAction that you could possibly use with JSlider:
/**
* Name of the Action for extending the selection
* by moving the caret logically forward one position.
* @see #getActions
*/
public static final String selectionForwardAction = "selection-forward";