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_NATIVEstatic byte[]LS_UNIXstatic 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 voidclose()intread()intread(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:
readin classInputStream- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException- Overrides:
readin classInputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInputStream- Throws:
IOException
-
-