Interface AudienceCompositionMetricsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AudienceCompositionMetrics,AudienceCompositionMetrics.Builder
public interface AudienceCompositionMetricsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetAudienceShare()The fraction (from 0 to 1 inclusive) of the specific audience that match the attribute.doublegetBaselineAudienceShare()The fraction (from 0 to 1 inclusive) of the baseline audience that match the attribute.doublegetIndex()The ratio of audience_share to baseline_audience_share, or zero if this ratio is undefined or is not meaningful.doublegetScore()A relevance score from 0 to 1 inclusive.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBaselineAudienceShare
double getBaselineAudienceShare()
The fraction (from 0 to 1 inclusive) of the baseline audience that match the attribute.
double baseline_audience_share = 1;- Returns:
- The baselineAudienceShare.
-
getAudienceShare
double getAudienceShare()
The fraction (from 0 to 1 inclusive) of the specific audience that match the attribute.
double audience_share = 2;- Returns:
- The audienceShare.
-
getIndex
double getIndex()
The ratio of audience_share to baseline_audience_share, or zero if this ratio is undefined or is not meaningful.
double index = 3;- Returns:
- The index.
-
getScore
double getScore()
A relevance score from 0 to 1 inclusive.
double score = 4;- Returns:
- The score.
-
-