Interface TimedCountOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TimedCount,TimedCount.Builder
public interface TimedCountOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCount()Approximate number of occurrences in the given time period.com.google.protobuf.TimestampgetEndTime()End of the time period to which `count` refers (excluded).com.google.protobuf.TimestampOrBuildergetEndTimeOrBuilder()End of the time period to which `count` refers (excluded).com.google.protobuf.TimestampgetStartTime()Start of the time period to which `count` refers (included).com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()Start of the time period to which `count` refers (included).booleanhasEndTime()End of the time period to which `count` refers (excluded).booleanhasStartTime()Start of the time period to which `count` refers (included).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCount
long getCount()
Approximate number of occurrences in the given time period.
int64 count = 1;- Returns:
- The count.
-
hasStartTime
boolean hasStartTime()
Start of the time period to which `count` refers (included).
.google.protobuf.Timestamp start_time = 2;- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Start of the time period to which `count` refers (included).
.google.protobuf.Timestamp start_time = 2;- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Start of the time period to which `count` refers (included).
.google.protobuf.Timestamp start_time = 2;
-
hasEndTime
boolean hasEndTime()
End of the time period to which `count` refers (excluded).
.google.protobuf.Timestamp end_time = 3;- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
End of the time period to which `count` refers (excluded).
.google.protobuf.Timestamp end_time = 3;- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
End of the time period to which `count` refers (excluded).
.google.protobuf.Timestamp end_time = 3;
-
-