• 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/talent/v4/histogram.proto
18 
19 package com.google.cloud.talent.v4;
20 
21 public interface HistogramQueryOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.talent.v4.HistogramQuery)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * An expression specifies a histogram request against matching jobs for
31    * searches.
32    * See
33    * [SearchJobsRequest.histogram_queries][google.cloud.talent.v4.SearchJobsRequest.histogram_queries]
34    * for details about syntax.
35    * </pre>
36    *
37    * <code>string histogram_query = 1;</code>
38    *
39    * @return The histogramQuery.
40    */
getHistogramQuery()41   java.lang.String getHistogramQuery();
42   /**
43    *
44    *
45    * <pre>
46    * An expression specifies a histogram request against matching jobs for
47    * searches.
48    * See
49    * [SearchJobsRequest.histogram_queries][google.cloud.talent.v4.SearchJobsRequest.histogram_queries]
50    * for details about syntax.
51    * </pre>
52    *
53    * <code>string histogram_query = 1;</code>
54    *
55    * @return The bytes for histogramQuery.
56    */
getHistogramQueryBytes()57   com.google.protobuf.ByteString getHistogramQueryBytes();
58 }
59