I tend to order my static imports as follows:
import java.io.ByteArrayInputStream;
import junit.framework.TestCase;
import org.hibernate.FlushMode;
import org.hibernate.SessionFactory;
import org.hibernate.classic.Session;
import static java.lang.String.format;
import static org.easymock.classextension.EasyMock.createMock;
import static org.easymock.classextension.EasyMock.expect;
as opposed to sorting them with the rest of my imports. This doesn't seem to be possible with what's currently available in code style.
This is only high for me because it makes me unable to use optimize imports to eliminate unused imports. Every time I do, it changes the order of static imports which I have to fix manually.