By default, when you use the ctrl + shift + o shortcut, the static imports are placed before the standard imports
import static org.mockito.Maters.any;
import static org.mockito.Maters.anyInt;
import static org.mockito.Maters.anyString;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Unfortunately, this is against our company's internal code checkstyle, is it possible to change this grouping so the static imports come after the standard imports?