Interface MonthlySearchVolumeOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    MonthlySearchVolume, MonthlySearchVolume.Builder

    public interface MonthlySearchVolumeOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      MonthOfYearEnum.MonthOfYear getMonth()
      The month of the search volume.
      long getMonthlySearches()
      Approximate number of searches for the month.
      int getMonthValue()
      The month of the search volume.
      long getYear()
      The year of the search volume (e.g.
      boolean hasMonthlySearches()
      Approximate number of searches for the month.
      boolean hasYear()
      The year of the search volume (e.g.
      • 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 Detail

      • hasYear

        boolean hasYear()
         The year of the search volume (e.g. 2020).
         
        optional int64 year = 4;
        Returns:
        Whether the year field is set.
      • getYear

        long getYear()
         The year of the search volume (e.g. 2020).
         
        optional int64 year = 4;
        Returns:
        The year.
      • getMonthValue

        int getMonthValue()
         The month of the search volume.
         
        .google.ads.googleads.v10.enums.MonthOfYearEnum.MonthOfYear month = 2;
        Returns:
        The enum numeric value on the wire for month.
      • getMonth

        MonthOfYearEnum.MonthOfYear getMonth()
         The month of the search volume.
         
        .google.ads.googleads.v10.enums.MonthOfYearEnum.MonthOfYear month = 2;
        Returns:
        The month.
      • hasMonthlySearches

        boolean hasMonthlySearches()
         Approximate number of searches for the month.
         A null value indicates the search volume is unavailable for
         that month.
         
        optional int64 monthly_searches = 5;
        Returns:
        Whether the monthlySearches field is set.
      • getMonthlySearches

        long getMonthlySearches()
         Approximate number of searches for the month.
         A null value indicates the search volume is unavailable for
         that month.
         
        optional int64 monthly_searches = 5;
        Returns:
        The monthlySearches.