Interface TimeSegmentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TimeSegment,TimeSegment.Builder
public interface TimeSegmentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.DurationgetEndTimeOffset()End of the time segment (exclusive), represented as the duration since the example start.com.google.protobuf.DurationOrBuildergetEndTimeOffsetOrBuilder()End of the time segment (exclusive), represented as the duration since the example start.com.google.protobuf.DurationgetStartTimeOffset()Start of the time segment (inclusive), represented as the duration since the example start.com.google.protobuf.DurationOrBuildergetStartTimeOffsetOrBuilder()Start of the time segment (inclusive), represented as the duration since the example start.booleanhasEndTimeOffset()End of the time segment (exclusive), represented as the duration since the example start.booleanhasStartTimeOffset()Start of the time segment (inclusive), represented as the duration since the example start.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStartTimeOffset
boolean hasStartTimeOffset()
Start of the time segment (inclusive), represented as the duration since the example start.
.google.protobuf.Duration start_time_offset = 1;- Returns:
- Whether the startTimeOffset field is set.
-
getStartTimeOffset
com.google.protobuf.Duration getStartTimeOffset()
Start of the time segment (inclusive), represented as the duration since the example start.
.google.protobuf.Duration start_time_offset = 1;- Returns:
- The startTimeOffset.
-
getStartTimeOffsetOrBuilder
com.google.protobuf.DurationOrBuilder getStartTimeOffsetOrBuilder()
Start of the time segment (inclusive), represented as the duration since the example start.
.google.protobuf.Duration start_time_offset = 1;
-
hasEndTimeOffset
boolean hasEndTimeOffset()
End of the time segment (exclusive), represented as the duration since the example start.
.google.protobuf.Duration end_time_offset = 2;- Returns:
- Whether the endTimeOffset field is set.
-
getEndTimeOffset
com.google.protobuf.Duration getEndTimeOffset()
End of the time segment (exclusive), represented as the duration since the example start.
.google.protobuf.Duration end_time_offset = 2;- Returns:
- The endTimeOffset.
-
getEndTimeOffsetOrBuilder
com.google.protobuf.DurationOrBuilder getEndTimeOffsetOrBuilder()
End of the time segment (exclusive), represented as the duration since the example start.
.google.protobuf.Duration end_time_offset = 2;
-
-