Interface Closeable
-
- All Known Implementing Classes:
LimitedInputStream
,MultipartStream.ItemInputStream
public interface Closeable
Interface of an object, which may be closed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Closes the object.boolean
isClosed()
Returns, whether the object is already closed.
-
-
-
Method Detail
-
close
void close() throws java.io.IOException
Closes the object.- Throws:
java.io.IOException
- An I/O error occurred.
-
isClosed
boolean isClosed() throws java.io.IOException
Returns, whether the object is already closed.- Returns:
- True, if the object is closed, otherwise false.
- Throws:
java.io.IOException
- An I/O error occurred.
-
-