Package com.google.cloud.retail.v2
Interface IntervalOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Interval
,Interval.Builder
public interface IntervalOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getExclusiveMaximum()
Exclusive upper bound.double
getExclusiveMinimum()
Exclusive lower bound.Interval.MaxCase
getMaxCase()
double
getMaximum()
Inclusive upper bound.Interval.MinCase
getMinCase()
double
getMinimum()
Inclusive lower bound.boolean
hasExclusiveMaximum()
Exclusive upper bound.boolean
hasExclusiveMinimum()
Exclusive lower bound.boolean
hasMaximum()
Inclusive upper bound.boolean
hasMinimum()
Inclusive lower bound.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMinimum
boolean hasMinimum()
Inclusive lower bound.
double minimum = 1;
- Returns:
- Whether the minimum field is set.
-
getMinimum
double getMinimum()
Inclusive lower bound.
double minimum = 1;
- Returns:
- The minimum.
-
hasExclusiveMinimum
boolean hasExclusiveMinimum()
Exclusive lower bound.
double exclusive_minimum = 2;
- Returns:
- Whether the exclusiveMinimum field is set.
-
getExclusiveMinimum
double getExclusiveMinimum()
Exclusive lower bound.
double exclusive_minimum = 2;
- Returns:
- The exclusiveMinimum.
-
hasMaximum
boolean hasMaximum()
Inclusive upper bound.
double maximum = 3;
- Returns:
- Whether the maximum field is set.
-
getMaximum
double getMaximum()
Inclusive upper bound.
double maximum = 3;
- Returns:
- The maximum.
-
hasExclusiveMaximum
boolean hasExclusiveMaximum()
Exclusive upper bound.
double exclusive_maximum = 4;
- Returns:
- Whether the exclusiveMaximum field is set.
-
getExclusiveMaximum
double getExclusiveMaximum()
Exclusive upper bound.
double exclusive_maximum = 4;
- Returns:
- The exclusiveMaximum.
-
getMinCase
Interval.MinCase getMinCase()
-
getMaxCase
Interval.MaxCase getMaxCase()
-
-