Interface AgeDimensionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AgeDimension,AgeDimension.Builder
public interface AgeDimensionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AgeSegmentgetAgeRanges(int index)Contiguous age range to be included in the dimension.intgetAgeRangesCount()Contiguous age range to be included in the dimension.java.util.List<AgeSegment>getAgeRangesList()Contiguous age range to be included in the dimension.AgeSegmentOrBuildergetAgeRangesOrBuilder(int index)Contiguous age range to be included in the dimension.java.util.List<? extends AgeSegmentOrBuilder>getAgeRangesOrBuilderList()Contiguous age range to be included in the dimension.booleangetIncludeUndetermined()Include users whose age is not determined.booleanhasIncludeUndetermined()Include users whose age is not determined.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAgeRangesList
java.util.List<AgeSegment> getAgeRangesList()
Contiguous age range to be included in the dimension.
repeated .google.ads.googleads.v10.common.AgeSegment age_ranges = 1;
-
getAgeRanges
AgeSegment getAgeRanges(int index)
Contiguous age range to be included in the dimension.
repeated .google.ads.googleads.v10.common.AgeSegment age_ranges = 1;
-
getAgeRangesCount
int getAgeRangesCount()
Contiguous age range to be included in the dimension.
repeated .google.ads.googleads.v10.common.AgeSegment age_ranges = 1;
-
getAgeRangesOrBuilderList
java.util.List<? extends AgeSegmentOrBuilder> getAgeRangesOrBuilderList()
Contiguous age range to be included in the dimension.
repeated .google.ads.googleads.v10.common.AgeSegment age_ranges = 1;
-
getAgeRangesOrBuilder
AgeSegmentOrBuilder getAgeRangesOrBuilder(int index)
Contiguous age range to be included in the dimension.
repeated .google.ads.googleads.v10.common.AgeSegment age_ranges = 1;
-
hasIncludeUndetermined
boolean hasIncludeUndetermined()
Include users whose age is not determined.
optional bool include_undetermined = 2;- Returns:
- Whether the includeUndetermined field is set.
-
getIncludeUndetermined
boolean getIncludeUndetermined()
Include users whose age is not determined.
optional bool include_undetermined = 2;- Returns:
- The includeUndetermined.
-
-