Uses of Class
com.github.dannil.scbjavaclient.utility.UnicodeBOMInputStream.BOM
-
Packages that use UnicodeBOMInputStream.BOM Package Description com.github.dannil.scbjavaclient.utility Package which contains all the utility classes. -
-
Uses of UnicodeBOMInputStream.BOM in com.github.dannil.scbjavaclient.utility
Fields in com.github.dannil.scbjavaclient.utility declared as UnicodeBOMInputStream.BOM Modifier and Type Field Description static UnicodeBOMInputStream.BOM
UnicodeBOMInputStream.BOM. NONE
NONE.static UnicodeBOMInputStream.BOM
UnicodeBOMInputStream.BOM. UTF_16_BE
UTF-16, big-endian (FE FF).static UnicodeBOMInputStream.BOM
UnicodeBOMInputStream.BOM. UTF_16_LE
UTF-16, little-endian (FF FE).static UnicodeBOMInputStream.BOM
UnicodeBOMInputStream.BOM. UTF_32_BE
UTF-32, big-endian (00 00 FE FF).static UnicodeBOMInputStream.BOM
UnicodeBOMInputStream.BOM. UTF_32_LE
UTF-32, little-endian (FF FE 00 00).static UnicodeBOMInputStream.BOM
UnicodeBOMInputStream.BOM. UTF_8
UTF-8 BOM (EF BB BF).Methods in com.github.dannil.scbjavaclient.utility that return UnicodeBOMInputStream.BOM Modifier and Type Method Description UnicodeBOMInputStream.BOM
UnicodeBOMInputStream. getBOM()
Returns theBOM
that was detected in the wrappedInputStream
object.UnicodeBOMInputStream.BOM
UnicodeBOMInputStream. getUtf16Bom(byte[] bomRawBytes)
Retrieves the UTF-16BOM
from the specifiedbyte
array.UnicodeBOMInputStream.BOM
UnicodeBOMInputStream. getUtf32Bom(byte[] bomRawBytes)
Retrieves the UTF-32BOM
from the specifiedbyte
array.UnicodeBOMInputStream.BOM
UnicodeBOMInputStream. getUtf8Bom(byte[] bomRawBytes)
Retrieves the UTF-8BOM
from the specifiedbyte
array.
-