CodePage.java 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. *
  19. * @author mrTJO
  20. */
  21. public final class CodePage
  22. {
  23. public static final int CP_OEM_US = 437;
  24. public static final int CP_OEM_ARABIC = 720;
  25. public static final int CP_OEM_GREEK = 737;
  26. public static final int CP_OEM_BALTIC = 775;
  27. public static final int CP_OEM_LATIN_I = 850;
  28. public static final int CP_OEM_LATIN_II = 852;
  29. public static final int CP_OEM_CYRILLIC = 855;
  30. public static final int CP_OEM_TURKISH = 857;
  31. public static final int CP_OEM_LATIN_EU = 858;
  32. public static final int CP_OEM_HEBREW = 862;
  33. public static final int CP_OEM_RUSSIAN = 866;
  34. public static final int CP_THAI = 874;
  35. public static final int CP_JAPANESE = 932;
  36. public static final int CP_SIMPL_CHINESE = 936;
  37. public static final int CP_KOREAN = 949;
  38. public static final int CP_TRAD_CHINESE = 950;
  39. public static final int CP_CENTRAL_EU = 1250;
  40. public static final int CP_CYRILLIC = 1251;
  41. public static final int CP_LATIN_I = 1252;
  42. public static final int CP_GREEK = 1253;
  43. public static final int CP_TURKISH = 1254;
  44. public static final int CP_HEBREW = 1255;
  45. public static final int CP_ARABIC = 1256;
  46. public static final int CP_BALTIC = 1257;
  47. public static final int CP_VIETNAM = 1258;
  48. public static final int CP_UTF7 = 65000;
  49. public static final int CP_UTF8 = 65001;
  50. }