1 package org.apache.poi.hpsf; 2 3 /** 4 * <p>Defines constants of general use.</p> 5 * 6 * @author Rainer Klute <a 7 * HREF="mailto:klute@rainer-klute.de"><klute@rainer-klute.de></a> 8 * @since 2004-06-20 9 * @version $Id: Constants.java,v 1.2 2005/02/13 18:35:09 klute Exp $ 10 */ 11 public class Constants 12 { 13 14 /** <p>Codepage for Macintosh Roman (MacRoman)</p> */ 15 public static final int CP_MACROMAN = 10000; 16 17 /** <p>Codepage for SJIS</p> */ 18 public static final int CP_SJIS = 932; 19 20 /** <p>Codepage for UTF-16</p> */ 21 public static final int CP_UTF16 = 1200; 22 23 /** <p>Codepage for UTF-8</p> */ 24 public static final int CP_UTF8 = 65001; 25 26 /** <p>Codepage for Unicode</p> */ 27 public static final int CP_UNICODE = CP_UTF16; 28 29 } 30