• 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/automl/v1beta1/data_stats.proto
18 
19 package com.google.cloud.automl.v1beta1;
20 
21 public interface StringStatsOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.automl.v1beta1.StringStats)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The statistics of the top 20 unigrams, ordered by
31    * [count][google.cloud.automl.v1beta1.StringStats.UnigramStats.count].
32    * </pre>
33    *
34    * <code>repeated .google.cloud.automl.v1beta1.StringStats.UnigramStats top_unigram_stats = 1;
35    * </code>
36    */
getTopUnigramStatsList()37   java.util.List<com.google.cloud.automl.v1beta1.StringStats.UnigramStats> getTopUnigramStatsList();
38   /**
39    *
40    *
41    * <pre>
42    * The statistics of the top 20 unigrams, ordered by
43    * [count][google.cloud.automl.v1beta1.StringStats.UnigramStats.count].
44    * </pre>
45    *
46    * <code>repeated .google.cloud.automl.v1beta1.StringStats.UnigramStats top_unigram_stats = 1;
47    * </code>
48    */
getTopUnigramStats(int index)49   com.google.cloud.automl.v1beta1.StringStats.UnigramStats getTopUnigramStats(int index);
50   /**
51    *
52    *
53    * <pre>
54    * The statistics of the top 20 unigrams, ordered by
55    * [count][google.cloud.automl.v1beta1.StringStats.UnigramStats.count].
56    * </pre>
57    *
58    * <code>repeated .google.cloud.automl.v1beta1.StringStats.UnigramStats top_unigram_stats = 1;
59    * </code>
60    */
getTopUnigramStatsCount()61   int getTopUnigramStatsCount();
62   /**
63    *
64    *
65    * <pre>
66    * The statistics of the top 20 unigrams, ordered by
67    * [count][google.cloud.automl.v1beta1.StringStats.UnigramStats.count].
68    * </pre>
69    *
70    * <code>repeated .google.cloud.automl.v1beta1.StringStats.UnigramStats top_unigram_stats = 1;
71    * </code>
72    */
73   java.util.List<? extends com.google.cloud.automl.v1beta1.StringStats.UnigramStatsOrBuilder>
getTopUnigramStatsOrBuilderList()74       getTopUnigramStatsOrBuilderList();
75   /**
76    *
77    *
78    * <pre>
79    * The statistics of the top 20 unigrams, ordered by
80    * [count][google.cloud.automl.v1beta1.StringStats.UnigramStats.count].
81    * </pre>
82    *
83    * <code>repeated .google.cloud.automl.v1beta1.StringStats.UnigramStats top_unigram_stats = 1;
84    * </code>
85    */
getTopUnigramStatsOrBuilder( int index)86   com.google.cloud.automl.v1beta1.StringStats.UnigramStatsOrBuilder getTopUnigramStatsOrBuilder(
87       int index);
88 }
89