Interface DataWriter<T>

Type Parameters:
T - 書き込むデータ型
All Superinterfaces:
AutoCloseable, Closeable
All Known Implementing Classes:
CsvDataWriter

@Published(tag="architect") public interface DataWriter<T> extends Closeable
データを書き込むインタフェース。
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    write(T data)
    データを書き込む。

    Methods inherited from interface java.io.Closeable

    close
  • Method Details

    • write

      void write(T data) throws IOException
      データを書き込む。
      Parameters:
      data - データ
      Throws:
      IOException - データ書き込みに失敗した場合