Interface DateRangeOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DateRange,DateRange.Builder
public interface DateRangeOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionThe end date, in yyyy-mm-dd format.com.google.protobuf.ByteStringThe end date, in yyyy-mm-dd format.The start date, in yyyy-mm-dd format.com.google.protobuf.ByteStringThe start date, in yyyy-mm-dd format.booleanThe end date, in yyyy-mm-dd format.booleanThe start date, in yyyy-mm-dd format.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasStartDate
boolean hasStartDate()The start date, in yyyy-mm-dd format. This date is inclusive.
optional string start_date = 3;- Returns:
- Whether the startDate field is set.
-
getStartDate
String getStartDate()The start date, in yyyy-mm-dd format. This date is inclusive.
optional string start_date = 3;- Returns:
- The startDate.
-
getStartDateBytes
com.google.protobuf.ByteString getStartDateBytes()The start date, in yyyy-mm-dd format. This date is inclusive.
optional string start_date = 3;- Returns:
- The bytes for startDate.
-
hasEndDate
boolean hasEndDate()The end date, in yyyy-mm-dd format. This date is inclusive.
optional string end_date = 4;- Returns:
- Whether the endDate field is set.
-
getEndDate
String getEndDate()The end date, in yyyy-mm-dd format. This date is inclusive.
optional string end_date = 4;- Returns:
- The endDate.
-
getEndDateBytes
com.google.protobuf.ByteString getEndDateBytes()The end date, in yyyy-mm-dd format. This date is inclusive.
optional string end_date = 4;- Returns:
- The bytes for endDate.
-