com.google.cloud.retail.v2beta.IntervalOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-retail-v2beta Show documentation
Show all versions of proto-google-cloud-retail-v2beta Show documentation
Proto library for google-cloud-retail
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/retail/v2beta/common.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.retail.v2beta;
public interface IntervalOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.retail.v2beta.Interval)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Inclusive lower bound.
*
*
* double minimum = 1;
*
* @return Whether the minimum field is set.
*/
boolean hasMinimum();
/**
*
*
*
* Inclusive lower bound.
*
*
* double minimum = 1;
*
* @return The minimum.
*/
double getMinimum();
/**
*
*
*
* Exclusive lower bound.
*
*
* double exclusive_minimum = 2;
*
* @return Whether the exclusiveMinimum field is set.
*/
boolean hasExclusiveMinimum();
/**
*
*
*
* Exclusive lower bound.
*
*
* double exclusive_minimum = 2;
*
* @return The exclusiveMinimum.
*/
double getExclusiveMinimum();
/**
*
*
*
* Inclusive upper bound.
*
*
* double maximum = 3;
*
* @return Whether the maximum field is set.
*/
boolean hasMaximum();
/**
*
*
*
* Inclusive upper bound.
*
*
* double maximum = 3;
*
* @return The maximum.
*/
double getMaximum();
/**
*
*
*
* Exclusive upper bound.
*
*
* double exclusive_maximum = 4;
*
* @return Whether the exclusiveMaximum field is set.
*/
boolean hasExclusiveMaximum();
/**
*
*
*
* Exclusive upper bound.
*
*
* double exclusive_maximum = 4;
*
* @return The exclusiveMaximum.
*/
double getExclusiveMaximum();
com.google.cloud.retail.v2beta.Interval.MinCase getMinCase();
com.google.cloud.retail.v2beta.Interval.MaxCase getMaxCase();
}