Op

パブリックインターフェースOp
既知の間接サブクラス

すべての操作ラッパーのマーカー インターフェイス。

操作ラッパーは、コア クラスで必要とされるリテラルやインデックスを使用せずに、操作を構築および実行するための厳密に型指定されたインターフェイスを提供します。

このインターフェイスを使用すると、共通の型を使用して任意の操作ラッパーへの参照を保持できます。

// All values returned by an Ops call can be referred as a Op
 Op split = ops.array().split(...);
 Op shape = ops.array().shape(...);

 // All operations could be added to an Op collection
 Collection<Op> allOps = Arrays.asList(split, shape);