InputByteStream.java
922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.internal.io.stream;
import java.io.IOException;
import java.io.InputStream;
public interface InputByteStream {
public static final int EOF = -1;
public InputByteStream slice(long var1, long var3) throws IOException;
public InputByteStream slice() throws IOException;
public int read() throws IOException;
public int read(byte[] var1, int var2, int var3) throws IOException;
public int read(byte[] var1) throws IOException;
public int unget() throws IOException;
public InputByteStream seek(long var1) throws IOException;
public long getPosition() throws IOException;
public long length() throws IOException;
public long bytesAvailable() throws IOException;
public boolean eof() throws IOException;
public void close() throws IOException;
public InputStream toInputStream() throws IOException;
}