Searched defs:BOMS (Results 1 - 1 of 1) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/analysis/
H A DAnalyzerGuru.java636 private static final Map<String, byte[]> BOMS field in class:AnalyzerGuru
640 BOMS.put("UTF-8", new byte[]{(byte) 0xEF, (byte) 0xBB, (byte) 0xBF});
641 BOMS.put("UTF-16BE", new byte[]{(byte) 0xFE, (byte) 0xFF});
642 BOMS.put("UTF-16LE", new byte[]{(byte) 0xFF, (byte) 0xFE});
654 for (Map.Entry<String, byte[]> entry : BOMS.entrySet()) {

Completed in 12 milliseconds