Comment changer la taille de la police dans JLabel

label = new JLabel("A label");
label.setFont(new Font("Serif", Font.PLAIN, 14));
Victorious Vole