To see all the fonts available to you on your system, you can use the following. The source code is HERE
import java.awt.*;

public class LsFonts {
    public static void main(String[] args) {
        // Get all font family names
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        String fontNames[] = ge.getAvailableFontFamilyNames();
        for (String name : fontNames) {
            System.out.println(name);
        }

    }
}