Uses of Class
org.apache.commons.io.ByteOrderMark
Packages that use ByteOrderMark
Package
Description
Provides classes for working with streams, readers, writers and files.
Provides implementations of input classes, such as
InputStream
and Reader
.-
Uses of ByteOrderMark in org.apache.commons.io
Fields in org.apache.commons.io declared as ByteOrderMarkModifier and TypeFieldDescriptionstatic final ByteOrderMark
ByteOrderMark.UTF_16BE
UTF-16BE BOM (Big-Endian).static final ByteOrderMark
ByteOrderMark.UTF_16LE
UTF-16LE BOM (Little-Endian).static final ByteOrderMark
ByteOrderMark.UTF_32BE
UTF-32BE BOM (Big-Endian).static final ByteOrderMark
ByteOrderMark.UTF_32LE
UTF-32LE BOM (Little-Endian).static final ByteOrderMark
ByteOrderMark.UTF_8
UTF-8 BOM. -
Uses of ByteOrderMark in org.apache.commons.io.input
Fields in org.apache.commons.io.input declared as ByteOrderMarkModifier and TypeFieldDescriptionprivate static final ByteOrderMark[]
XmlStreamReader.BOMS
private ByteOrderMark
BOMInputStream.byteOrderMark
private ByteOrderMark[]
BOMInputStream.Builder.byteOrderMarks
private static final ByteOrderMark[]
BOMInputStream.Builder.DEFAULT
private static final ByteOrderMark[]
XmlStreamReader.XML_GUESS_BYTES
UTF_16LE and UTF_32LE have the same two starting BOM bytes.Fields in org.apache.commons.io.input with type parameters of type ByteOrderMarkModifier and TypeFieldDescriptionprivate final List
<ByteOrderMark> BOMInputStream.boms
BOMs are sorted from longest to shortest.private static final Comparator
<ByteOrderMark> BOMInputStream.ByteOrderMarkLengthComparator
Compares ByteOrderMark objects in descending length order.Methods in org.apache.commons.io.input that return ByteOrderMarkModifier and TypeMethodDescriptionprivate ByteOrderMark
BOMInputStream.find()
Find a BOM with the specified bytes.BOMInputStream.getBOM()
Gets the BOM (Byte Order Mark).(package private) static ByteOrderMark
BOMInputStream.Builder.getDefaultByteOrderMark()
For test access.Methods in org.apache.commons.io.input with parameters of type ByteOrderMarkModifier and TypeMethodDescriptionboolean
BOMInputStream.hasBOM
(ByteOrderMark bom) Tests whether the stream contains the specified BOM.private boolean
BOMInputStream.matches
(ByteOrderMark bom) Checks if the bytes match a BOM.BOMInputStream.Builder.setByteOrderMarks
(ByteOrderMark... byteOrderMarks) Sets the ByteOrderMarks to detect and optionally exclude.Constructors in org.apache.commons.io.input with parameters of type ByteOrderMarkModifierConstructorDescriptionBOMInputStream
(InputStream delegate, boolean include, ByteOrderMark... boms) Deprecated.BOMInputStream
(InputStream delegate, ByteOrderMark... boms) Deprecated.
BOMInputStream.builder()
,BOMInputStream.Builder
, andBOMInputStream.Builder.get()