Package com.github._1c_syntax.bsl.parser
Class UnicodeBOMInputStream.BOM
java.lang.Object
com.github._1c_syntax.bsl.parser.UnicodeBOMInputStream.BOM
- Enclosing class:
- UnicodeBOMInputStream
Type safe enumeration class that describes the different types of Unicode
BOMs.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final UnicodeBOMInputStream.BOM
NONE.static final UnicodeBOMInputStream.BOM
UTF-16, big-endian (FE FF).static final UnicodeBOMInputStream.BOM
UTF-16, little-endian (FF FE).static final UnicodeBOMInputStream.BOM
UTF-32, big-endian (00 00 FE FF).static final UnicodeBOMInputStream.BOM
UTF-32, little-endian (FF FE 00 00).static final UnicodeBOMInputStream.BOM
UTF-8 BOM (EF BB BF). -
Method Summary
-
Field Details
-
NONE
NONE. -
UTF_8
UTF-8 BOM (EF BB BF). -
UTF_16_LE
UTF-16, little-endian (FF FE). -
UTF_16_BE
UTF-16, big-endian (FE FF). -
UTF_32_LE
UTF-32, little-endian (FF FE 00 00). -
UTF_32_BE
UTF-32, big-endian (00 00 FE FF).
-
-
Method Details