Interface BitsFileReader
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable
- All Known Implementing Classes:
BitsFileReaderImpl
public interface BitsFileReader extends java.io.Closeable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()booleanreadBoolean()Read 1 boolean from file, file is a directory.
-
-
-
Method Detail
-
readBoolean
boolean readBoolean() throws java.io.IOExceptionRead 1 boolean from file, file is a directory. Use 1 long store 64 booleans, read from low to high.- Returns:
- boolean data
- Throws:
java.io.IOException
-
close
void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
-