Package org.tensorflow.metadata.v0
Interface FixedShapeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FixedShape,FixedShape.Builder
public interface FixedShapeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FixedShape.DimgetDim(int index)The dimensions that define the shape.intgetDimCount()The dimensions that define the shape.List<FixedShape.Dim>getDimList()The dimensions that define the shape.FixedShape.DimOrBuildergetDimOrBuilder(int index)The dimensions that define the shape.List<? extends FixedShape.DimOrBuilder>getDimOrBuilderList()The dimensions that define the shape.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDimList
List<FixedShape.Dim> getDimList()
The dimensions that define the shape. The total number of values in each example is the product of sizes of each dimension.
repeated .tensorflow.metadata.v0.FixedShape.Dim dim = 2;
-
getDim
FixedShape.Dim getDim(int index)
The dimensions that define the shape. The total number of values in each example is the product of sizes of each dimension.
repeated .tensorflow.metadata.v0.FixedShape.Dim dim = 2;
-
getDimCount
int getDimCount()
The dimensions that define the shape. The total number of values in each example is the product of sizes of each dimension.
repeated .tensorflow.metadata.v0.FixedShape.Dim dim = 2;
-
getDimOrBuilderList
List<? extends FixedShape.DimOrBuilder> getDimOrBuilderList()
The dimensions that define the shape. The total number of values in each example is the product of sizes of each dimension.
repeated .tensorflow.metadata.v0.FixedShape.Dim dim = 2;
-
getDimOrBuilder
FixedShape.DimOrBuilder getDimOrBuilder(int index)
The dimensions that define the shape. The total number of values in each example is the product of sizes of each dimension.
repeated .tensorflow.metadata.v0.FixedShape.Dim dim = 2;
-
-