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

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

Completed in 374 milliseconds