[]
Serializable, Comparable<FontLanguageIndex>, ConstableUse this enum to select the Latin, East Asian, or complex-script theme font from an IThemeFonts collection. It is commonly used with IThemeFonts.get(FontLanguageIndex) and returned by IThemeFont.getFontLanguageIndex().
Theme theme = new Theme("CustomTheme", Themes.GetBerlin());
workbook.setTheme(theme);
IThemeFont latinFont = workbook.getTheme().getThemeFontScheme().getMajor().get(FontLanguageIndex.Latin);
latinFont.setName("Aptos");
IThemeFont eastAsianFont = workbook.getTheme().getThemeFontScheme().getMajor().get(FontLanguageIndex.EastAsian);
eastAsianFont.setName("MS Gothic");
Enum.EnumDesc<E extends Enum<E>>static FontLanguageIndexstatic FontLanguageIndex[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null