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 Type
    Method
    Description
    The end date, in yyyy-mm-dd format.
    com.google.protobuf.ByteString
    The end date, in yyyy-mm-dd format.
    The start date, in yyyy-mm-dd format.
    com.google.protobuf.ByteString
    The start date, in yyyy-mm-dd format.
    boolean
    The end date, in yyyy-mm-dd format.
    boolean
    The start date, in yyyy-mm-dd format.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods 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.