protected ApplicationMode readApplicationMode() { String s = globalPreferences.getString(APPLICATION_MODE.getId(), ApplicationMode.DEFAULT.name()); try { return ApplicationMode.valueOf(s); } catch (IllegalArgumentException e) { return ApplicationMode.DEFAULT; } }
public boolean usingEnglishNames() { return USE_ENGLISH_NAMES.get(); }
public ApplicationMode getApplicationMode() { return APPLICATION_MODE.get(); }