Op.

interface pública Op
Subclasses indiretas conhecidas

Uma interface marcadora para todas as vagas de operação.

Os invólucros de operação fornecem interfaces fortemente digitadas para operações de construção e execução sem o uso de literais e índices, conforme exigido nas classes principais.

Essa interface permite manter as referências a qualquer invólucro de operação usando um tipo comum.

 // 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);
 

,
interface pública op
Subclasses indiretas conhecidas

A marker interface for all operation wrappers.

Operation wrappers provide strongly typed interfaces for building and execution operations without the use of literals and indexes, as required in the core classes.

This interface allows keeping references to any operation wrapper using a common type.

 // 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);