Uses of Class
org.jagatoo.util.io.UnicodeBOM

Packages that use UnicodeBOM
org.jagatoo.util.io   
 

Uses of UnicodeBOM in org.jagatoo.util.io
 

Methods in org.jagatoo.util.io that return UnicodeBOM
static UnicodeBOM UnicodeBOM.readBOM(java.io.File file)
          Only ready up to the first four bytes of the file and tries to recognize the unicode BOM from these data.
static UnicodeBOM UnicodeBOM.recognize(int bom)
           Attempts to recognize the passed unicode BOM.
static UnicodeBOM UnicodeBOM.removeBOM(java.io.File file, java.io.File temp)
          Removes the BOM bytes from the input file, if and only if one was found.
static UnicodeBOM UnicodeBOM.removeBOM(java.io.File file, java.io.File temp, java.nio.charset.Charset targetCharset)
          Removes the BOM bytes from the input file, if and only if one was found.
static UnicodeBOM UnicodeBOM.skipBOM(java.io.InputStream in)
          Skips the bytes, covered by a possible unicode BOM, or, if not recognized, does nothing.
static UnicodeBOM UnicodeBOM.valueOf(int bom)
           Attempts to recognize the passed unicode BOM.
static UnicodeBOM UnicodeBOM.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UnicodeBOM[] UnicodeBOM.values()
          Returns an array containing the constants of this enum type, in the order they are declared.