Class FSInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.tmatesoft.svn.core.internal.io.fs.FSInputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class FSInputStream extends java.io.InputStream
- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FSInputStream.FSRepresentationState
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
static java.io.InputStream
createDeltaStream(SVNDeltaCombiner combiner, FSRepresentation fileRep, FSFS owner)
static java.io.InputStream
createDeltaStream(SVNDeltaCombiner combiner, FSRevisionNode fileNode, FSFS owner)
int
read()
int
read(byte[] buf, int offset, int length)
static FSInputStream.FSRepresentationState
readRepresentationLine(FSFile file)
-
-
-
Method Detail
-
createDeltaStream
public static java.io.InputStream createDeltaStream(SVNDeltaCombiner combiner, FSRevisionNode fileNode, FSFS owner) throws SVNException
- Throws:
SVNException
-
createDeltaStream
public static java.io.InputStream createDeltaStream(SVNDeltaCombiner combiner, FSRepresentation fileRep, FSFS owner) throws SVNException
- Throws:
SVNException
-
read
public int read(byte[] buf, int offset, int length) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read() throws java.io.IOException
- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.InputStream
-
readRepresentationLine
public static FSInputStream.FSRepresentationState readRepresentationLine(FSFile file) throws SVNException
- Throws:
SVNException
-
-