スタートアップ(英語)
コミュニティ(英語)
トレーニング(英語)
チュートリアル(英語)
ドキュメント
API、AI、ツール (英語)
public Result<InputStream, FileAttributes> read(String path) { (1)
InputStream content = getContent(path);
FileAttributes attributes = getAttributes(path);
return Result.<InputStream, FileAttributes>builder() (2)
.output(content) (3)
.attributes(attributes) (4)
.build(); (5)
}


