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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetEndDate()The end date, in yyyy-mm-dd format.com.google.protobuf.ByteStringgetEndDateBytes()The end date, in yyyy-mm-dd format.java.lang.StringgetStartDate()The start date, in yyyy-mm-dd format.com.google.protobuf.ByteStringgetStartDateBytes()The start date, in yyyy-mm-dd format.booleanhasEndDate()The end date, in yyyy-mm-dd format.booleanhasStartDate()The start date, in yyyy-mm-dd format.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
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
java.lang.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
java.lang.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.
-
-