|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jenkinsci.plugins.uithemes.less.UnicodeBOMInputStream
public class UnicodeBOMInputStream
| Nested Class Summary | |
|---|---|
static class |
UnicodeBOMInputStream.BOM
Type safe enumeration class that describes the different types of Unicode BOMs. |
| Constructor Summary | |
|---|---|
UnicodeBOMInputStream(InputStream inputStream)
Constructs a new UnicodeBOMInputStream that wraps the
specified InputStream. |
|
| Method Summary | |
|---|---|
int |
available()
|
void |
close()
|
UnicodeBOMInputStream.BOM |
getBOM()
Returns the BOM that was detected in the wrapped
InputStream object. |
void |
mark(int readlimit)
|
boolean |
markSupported()
|
int |
read()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
void |
reset()
|
long |
skip(long n)
|
UnicodeBOMInputStream |
skipBOM()
Skips the BOM that was found in the wrapped
InputStream object. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public UnicodeBOMInputStream(InputStream inputStream)
throws NullPointerException,
IOException
UnicodeBOMInputStream that wraps the
specified InputStream.
inputStream - an InputStream.
NullPointerException - when inputStream is
null.
IOException - on reading from the specified InputStream
when trying to detect the Unicode BOM.| Method Detail |
|---|
public final UnicodeBOMInputStream.BOM getBOM()
BOM that was detected in the wrapped
InputStream object.
BOM value.
public final UnicodeBOMInputStream skipBOM()
throws IOException
BOM that was found in the wrapped
InputStream object.
UnicodeBOMInputStream.
IOException - when trying to skip the BOM from the wrapped
InputStream object.
public int read()
throws IOException
IOException
public int read(byte[] b)
throws IOException,
NullPointerException
IOException
NullPointerException
public int read(byte[] b,
int off,
int len)
throws IOException,
NullPointerException
IOException
NullPointerException
public long skip(long n)
throws IOException
IOException
public int available()
throws IOException
IOException
public void close()
throws IOException
IOExceptionpublic void mark(int readlimit)
public void reset()
throws IOException
IOExceptionpublic boolean markSupported()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||