CodePage.java 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package com.l2jserver.util.osnative;
  16. /**
  17. * This class contains console code pages
  18. * @author mrTJO
  19. */
  20. public final class CodePage
  21. {
  22. public static final int CP_OEM_US = 437;
  23. public static final int CP_OEM_ARABIC = 720;
  24. public static final int CP_OEM_GREEK = 737;
  25. public static final int CP_OEM_BALTIC = 775;
  26. public static final int CP_OEM_LATIN_I = 850;
  27. public static final int CP_OEM_LATIN_II = 852;
  28. public static final int CP_OEM_CYRILLIC = 855;
  29. public static final int CP_OEM_TURKISH = 857;
  30. public static final int CP_OEM_LATIN_EU = 858;
  31. public static final int CP_OEM_HEBREW = 862;
  32. public static final int CP_OEM_RUSSIAN = 866;
  33. public static final int CP_THAI = 874;
  34. public static final int CP_JAPANESE = 932;
  35. public static final int CP_SIMPL_CHINESE = 936;
  36. public static final int CP_KOREAN = 949;
  37. public static final int CP_TRAD_CHINESE = 950;
  38. public static final int CP_CENTRAL_EU = 1250;
  39. public static final int CP_CYRILLIC = 1251;
  40. public static final int CP_LATIN_I = 1252;
  41. public static final int CP_GREEK = 1253;
  42. public static final int CP_TURKISH = 1254;
  43. public static final int CP_HEBREW = 1255;
  44. public static final int CP_ARABIC = 1256;
  45. public static final int CP_BALTIC = 1257;
  46. public static final int CP_VIETNAM = 1258;
  47. public static final int CP_UTF7 = 65000;
  48. public static final int CP_UTF8 = 65001;
  49. }