Interface RangeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Range
,Range.Builder
public interface RangeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getMax()
The upper limit of the rangeboolean
getMaxExclusive()
True if `max` is not part of the range, false otherwisedouble
getMin()
The lower limit of the rangeboolean
getMinExclusive()
True if `min` is not part of the range, false otherwise-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMin
double getMin()
The lower limit of the range
double min = 1;
- Returns:
- The min.
-
getMinExclusive
boolean getMinExclusive()
True if `min` is not part of the range, false otherwise
bool minExclusive = 2;
- Returns:
- The minExclusive.
-
getMax
double getMax()
The upper limit of the range
double max = 3;
- Returns:
- The max.
-
getMaxExclusive
boolean getMaxExclusive()
True if `max` is not part of the range, false otherwise
bool maxExclusive = 4;
- Returns:
- The maxExclusive.
-
-