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 doublegetExclusiveMaximum()Exclusive upper bound.doublegetExclusiveMinimum()Exclusive lower bound.Interval.MaxCasegetMaxCase()doublegetMaximum()Inclusive upper bound.Interval.MinCasegetMinCase()doublegetMinimum()Inclusive lower bound.booleanhasExclusiveMaximum()Exclusive upper bound.booleanhasExclusiveMinimum()Exclusive lower bound.booleanhasMaximum()Inclusive upper bound.booleanhasMinimum()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()
-
-