ProgrammingFontManager.java 883 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.ifeegoo.demo.font;
  2. /**
  3. * <p>
  4. * Programming Font Manager.
  5. * </p>
  6. *
  7. * @author ifeegoo
  8. *
  9. * @since 1.0.0
  10. */
  11. public final class ProgrammingFontManager
  12. {
  13. /**
  14. * <p>
  15. * The font is fantastic or not.
  16. * </p>
  17. *
  18. * @param font
  19. * Font.
  20. *
  21. * @return TRUE:The font is fantastic.FALSE:The font is not fantastic.
  22. *
  23. * @see ProgrammingFontManager.Font
  24. */
  25. public static boolean isFantastic(int font)
  26. {
  27. String[] strings = new String[]{"1234567890",
  28. "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
  29. "abcdefghijklmnopqrstuvwxyz",
  30. "ΑΒΓΔΕΖΗΘΙΚ∧ΜΝΞΟ∏Ρ∑ΤΥΦΧΨΩ",
  31. "αβγδεζηθικλμνξοπρστυφχψω",
  32. "!@#$%^&*()_+-={}|[]':;<>,.?"};
  33. System.out.println(strings);
  34. return true;
  35. }
  36. }