Package | Description |
---|---|
com.github.dannil.scbjavaclient.utility |
Package which contains all the utility classes.
|
Modifier and Type | Field and 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).
|
Modifier and Type | Method and Description |
---|---|
UnicodeBOMInputStream.BOM |
UnicodeBOMInputStream.getBOM()
Returns the
BOM that was detected in the wrapped
InputStream object. |
UnicodeBOMInputStream.BOM |
UnicodeBOMInputStream.getUtf16Bom(byte[] bomRawBytes)
Retrieves the UTF-16
BOM from the specified byte array. |
UnicodeBOMInputStream.BOM |
UnicodeBOMInputStream.getUtf32Bom(byte[] bomRawBytes)
Retrieves the UTF-32
BOM from the specified byte array. |
UnicodeBOMInputStream.BOM |
UnicodeBOMInputStream.getUtf8Bom(byte[] bomRawBytes)
Retrieves the UTF-8
BOM from the specified byte array. |
Copyright © 2019. All rights reserved.