Op.

interfaz pública operativa
Subclases indirectas conocidas

Una interfaz marcadora para todos los envoltorios de operación.

Los envoltorios de operación proporcionan interfaces fuertemente tipadas para las operaciones de construcción y ejecución sin el uso de literales e índices, como se requiere en las clases centrales.

Esta interfaz permite mantener referencias a cualquier envoltorio de operación utilizando un tipo común.

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

,
interfaz pública OP
Subclases indirectos conocidos

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