• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/vision/v1/geometry.proto
18 
19 package com.google.cloud.vision.v1;
20 
21 public interface BoundingPolyOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.vision.v1.BoundingPoly)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The bounding polygon vertices.
31    * </pre>
32    *
33    * <code>repeated .google.cloud.vision.v1.Vertex vertices = 1;</code>
34    */
getVerticesList()35   java.util.List<com.google.cloud.vision.v1.Vertex> getVerticesList();
36   /**
37    *
38    *
39    * <pre>
40    * The bounding polygon vertices.
41    * </pre>
42    *
43    * <code>repeated .google.cloud.vision.v1.Vertex vertices = 1;</code>
44    */
getVertices(int index)45   com.google.cloud.vision.v1.Vertex getVertices(int index);
46   /**
47    *
48    *
49    * <pre>
50    * The bounding polygon vertices.
51    * </pre>
52    *
53    * <code>repeated .google.cloud.vision.v1.Vertex vertices = 1;</code>
54    */
getVerticesCount()55   int getVerticesCount();
56   /**
57    *
58    *
59    * <pre>
60    * The bounding polygon vertices.
61    * </pre>
62    *
63    * <code>repeated .google.cloud.vision.v1.Vertex vertices = 1;</code>
64    */
getVerticesOrBuilderList()65   java.util.List<? extends com.google.cloud.vision.v1.VertexOrBuilder> getVerticesOrBuilderList();
66   /**
67    *
68    *
69    * <pre>
70    * The bounding polygon vertices.
71    * </pre>
72    *
73    * <code>repeated .google.cloud.vision.v1.Vertex vertices = 1;</code>
74    */
getVerticesOrBuilder(int index)75   com.google.cloud.vision.v1.VertexOrBuilder getVerticesOrBuilder(int index);
76 
77   /**
78    *
79    *
80    * <pre>
81    * The bounding polygon normalized vertices.
82    * </pre>
83    *
84    * <code>repeated .google.cloud.vision.v1.NormalizedVertex normalized_vertices = 2;</code>
85    */
getNormalizedVerticesList()86   java.util.List<com.google.cloud.vision.v1.NormalizedVertex> getNormalizedVerticesList();
87   /**
88    *
89    *
90    * <pre>
91    * The bounding polygon normalized vertices.
92    * </pre>
93    *
94    * <code>repeated .google.cloud.vision.v1.NormalizedVertex normalized_vertices = 2;</code>
95    */
getNormalizedVertices(int index)96   com.google.cloud.vision.v1.NormalizedVertex getNormalizedVertices(int index);
97   /**
98    *
99    *
100    * <pre>
101    * The bounding polygon normalized vertices.
102    * </pre>
103    *
104    * <code>repeated .google.cloud.vision.v1.NormalizedVertex normalized_vertices = 2;</code>
105    */
getNormalizedVerticesCount()106   int getNormalizedVerticesCount();
107   /**
108    *
109    *
110    * <pre>
111    * The bounding polygon normalized vertices.
112    * </pre>
113    *
114    * <code>repeated .google.cloud.vision.v1.NormalizedVertex normalized_vertices = 2;</code>
115    */
116   java.util.List<? extends com.google.cloud.vision.v1.NormalizedVertexOrBuilder>
getNormalizedVerticesOrBuilderList()117       getNormalizedVerticesOrBuilderList();
118   /**
119    *
120    *
121    * <pre>
122    * The bounding polygon normalized vertices.
123    * </pre>
124    *
125    * <code>repeated .google.cloud.vision.v1.NormalizedVertex normalized_vertices = 2;</code>
126    */
getNormalizedVerticesOrBuilder(int index)127   com.google.cloud.vision.v1.NormalizedVertexOrBuilder getNormalizedVerticesOrBuilder(int index);
128 }
129