Interface YearMonthRangeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
YearMonthRange,YearMonthRange.Builder
public interface YearMonthRangeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description YearMonthgetEnd()The inclusive end year month.YearMonthOrBuildergetEndOrBuilder()The inclusive end year month.YearMonthgetStart()The inclusive start year month.YearMonthOrBuildergetStartOrBuilder()The inclusive start year month.booleanhasEnd()The inclusive end year month.booleanhasStart()The inclusive start year month.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStart
boolean hasStart()
The inclusive start year month.
.google.ads.googleads.v10.common.YearMonth start = 1;- Returns:
- Whether the start field is set.
-
getStart
YearMonth getStart()
The inclusive start year month.
.google.ads.googleads.v10.common.YearMonth start = 1;- Returns:
- The start.
-
getStartOrBuilder
YearMonthOrBuilder getStartOrBuilder()
The inclusive start year month.
.google.ads.googleads.v10.common.YearMonth start = 1;
-
hasEnd
boolean hasEnd()
The inclusive end year month.
.google.ads.googleads.v10.common.YearMonth end = 2;- Returns:
- Whether the end field is set.
-
getEnd
YearMonth getEnd()
The inclusive end year month.
.google.ads.googleads.v10.common.YearMonth end = 2;- Returns:
- The end.
-
getEndOrBuilder
YearMonthOrBuilder getEndOrBuilder()
The inclusive end year month.
.google.ads.googleads.v10.common.YearMonth end = 2;
-
-