Java Swing tornar a janela não redimensível

JFrame frame = new JFrame();

frame.setResizable(false);
Comfortable Caterpillar