Package com.graphdbapi.file
Interface BufferedWriterObject
-
- All Superinterfaces:
AutoCloseable
public interface BufferedWriterObject extends AutoCloseable
用于IO的BufferedWriter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
flush()
刷新void
write(String value)
写string值-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
write
void write(String value) throws GraphDbFileIOException
写string值- Parameters:
value
- 背写的字符串- Throws:
GraphDbFileIOException
- IO异常
-
flush
void flush() throws GraphDbFileIOException
刷新- Throws:
GraphDbFileIOException
- IO异常
-
-