Package com.google.cloud.compute.v1
Interface Int64RangeMatchOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Int64RangeMatch
,Int64RangeMatch.Builder
public interface Int64RangeMatchOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getRangeEnd()
The end of the range (exclusive) in signed long integer format.long
getRangeStart()
The start of the range (inclusive) in signed long integer format.boolean
hasRangeEnd()
The end of the range (exclusive) in signed long integer format.boolean
hasRangeStart()
The start of the range (inclusive) in signed long integer format.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRangeEnd
boolean hasRangeEnd()
The end of the range (exclusive) in signed long integer format.
optional int64 range_end = 322439897;
- Returns:
- Whether the rangeEnd field is set.
-
getRangeEnd
long getRangeEnd()
The end of the range (exclusive) in signed long integer format.
optional int64 range_end = 322439897;
- Returns:
- The rangeEnd.
-
hasRangeStart
boolean hasRangeStart()
The start of the range (inclusive) in signed long integer format.
optional int64 range_start = 103333600;
- Returns:
- Whether the rangeStart field is set.
-
getRangeStart
long getRangeStart()
The start of the range (inclusive) in signed long integer format.
optional int64 range_start = 103333600;
- Returns:
- The rangeStart.
-
-