Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/java/io/ObjectInput.java
41152 views
1
/*
2
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package java.io;
27
28
/**
29
* ObjectInput extends the DataInput interface to include the reading of
30
* objects. DataInput includes methods for the input of primitive types,
31
* ObjectInput extends that interface to include objects, arrays, and Strings.
32
*
33
* @see java.io.InputStream
34
* @see java.io.ObjectOutputStream
35
* @see java.io.ObjectInputStream
36
* @since 1.1
37
*/
38
public interface ObjectInput extends DataInput, AutoCloseable {
39
/**
40
* Read and return an object. The class that implements this interface
41
* defines where the object is "read" from.
42
*
43
* @return the object read from the stream
44
* @throws java.lang.ClassNotFoundException If the class of a serialized
45
* object cannot be found.
46
* @throws IOException If any of the usual Input/Output
47
* related exceptions occur.
48
*/
49
public Object readObject()
50
throws ClassNotFoundException, IOException;
51
52
/**
53
* Reads a byte of data. This method will block if no input is
54
* available.
55
* @return the byte read, or -1 if the end of the
56
* stream is reached.
57
* @throws IOException If an I/O error has occurred.
58
*/
59
public int read() throws IOException;
60
61
/**
62
* Reads into an array of bytes. This method will
63
* block until some input is available.
64
* @param b the buffer into which the data is read
65
* @return the actual number of bytes read, -1 is
66
* returned when the end of the stream is reached.
67
* @throws IOException If an I/O error has occurred.
68
*/
69
public int read(byte b[]) throws IOException;
70
71
/**
72
* Reads into an array of bytes. This method will
73
* block until some input is available.
74
* @param b the buffer into which the data is read
75
* @param off the start offset of the data
76
* @param len the maximum number of bytes read
77
* @return the actual number of bytes read, -1 is
78
* returned when the end of the stream is reached.
79
* @throws IOException If an I/O error has occurred.
80
*/
81
public int read(byte b[], int off, int len) throws IOException;
82
83
/**
84
* Skips n bytes of input.
85
* @param n the number of bytes to be skipped
86
* @return the actual number of bytes skipped.
87
* @throws IOException If an I/O error has occurred.
88
*/
89
public long skip(long n) throws IOException;
90
91
/**
92
* Returns the number of bytes that can be read
93
* without blocking.
94
* @return the number of available bytes.
95
* @throws IOException If an I/O error has occurred.
96
*/
97
public int available() throws IOException;
98
99
/**
100
* Closes the input stream. Must be called
101
* to release any resources associated with
102
* the stream.
103
* @throws IOException If an I/O error has occurred.
104
*/
105
public void close() throws IOException;
106
}
107
108