Package org.apache.jackrabbit.vault.util
Class LineInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.jackrabbit.vault.util.LineInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public class LineInputStream extends InputStream
Provides an input stream wrapper that detects line feed sequences and replaces them by new ones.
-
-
Field Summary
Fields Modifier and Type Field Description static byte[]
LS_NATIVE
static byte[]
LS_UNIX
static byte[]
LS_WINDOWS
-
Constructor Summary
Constructors Constructor Description LineInputStream(InputStream in, byte[] ls)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
int
read()
int
read(byte[] b, int off, int len)
-
Methods inherited from class java.io.InputStream
available, mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Constructor Detail
-
LineInputStream
public LineInputStream(InputStream in, byte[] ls)
-
-
Method Detail
-
read
public int read() throws IOException
- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException
- Overrides:
read
in classInputStream
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
-