Package com.google.privacy.dlp.v2
Interface BoundingBoxOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BoundingBox,BoundingBox.Builder
public interface BoundingBoxOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetHeight()Height of the bounding box in pixels.intgetLeft()Left coordinate of the bounding box.intgetTop()Top coordinate of the bounding box.intgetWidth()Width of the bounding box in pixels.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTop
int getTop()
Top coordinate of the bounding box. (0,0) is upper left.
int32 top = 1;- Returns:
- The top.
-
getLeft
int getLeft()
Left coordinate of the bounding box. (0,0) is upper left.
int32 left = 2;- Returns:
- The left.
-
getWidth
int getWidth()
Width of the bounding box in pixels.
int32 width = 3;- Returns:
- The width.
-
getHeight
int getHeight()
Height of the bounding box in pixels.
int32 height = 4;- Returns:
- The height.
-
-