FrequencyCapFilters
public
final
class
FrequencyCapFilters
extends Object
implements
Parcelable
java.lang.Object | |
↳ | android.adservices.common.FrequencyCapFilters |
A container for the ad filters that are based on frequency caps.
Frequency caps filters combine an event type with a set of KeyedFrequencyCap
objects
to define a set of ad filters. If any of these frequency caps are exceeded for a given ad, the ad
will be removed from the group of ads submitted to a buyer adtech's bidding function.
Summary
Nested classes | |
---|---|
class |
FrequencyCapFilters.Builder
Builder for creating |
Constants | |
---|---|
int |
AD_EVENT_TYPE_CLICK
|
int |
AD_EVENT_TYPE_IMPRESSION
|
int |
AD_EVENT_TYPE_VIEW
|
int |
AD_EVENT_TYPE_WIN
The WIN ad event type is automatically populated within the FLEDGE service for any winning ad which is returned from FLEDGE ad selection. |
Inherited constants |
---|
Fields | |
---|---|
public
static
final
Creator<FrequencyCapFilters> |
CREATOR
|
Public methods | |
---|---|
boolean
|
equals(Object o)
Checks whether the |
Set<KeyedFrequencyCap>
|
getKeyedFrequencyCapsForClickEvents()
Gets the set of |
Set<KeyedFrequencyCap>
|
getKeyedFrequencyCapsForImpressionEvents()
Gets the set of |
Set<KeyedFrequencyCap>
|
getKeyedFrequencyCapsForViewEvents()
Gets the set of |
Set<KeyedFrequencyCap>
|
getKeyedFrequencyCapsForWinEvents()
Gets the set of |
int
|
hashCode()
Returns the hash of the |
String
|
toString()
Returns a string representation of the object. |
void
|
writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel. |
Inherited methods | |
---|---|
Constants
AD_EVENT_TYPE_CLICK
public static final int AD_EVENT_TYPE_CLICK
Constant Value: 3 (0x00000003)
AD_EVENT_TYPE_IMPRESSION
public static final int AD_EVENT_TYPE_IMPRESSION
Constant Value: 1 (0x00000001)
AD_EVENT_TYPE_VIEW
public static final int AD_EVENT_TYPE_VIEW
Constant Value: 2 (0x00000002)
AD_EVENT_TYPE_WIN
public static final int AD_EVENT_TYPE_WIN
The WIN ad event type is automatically populated within the FLEDGE service for any winning ad which is returned from FLEDGE ad selection.
It should not be used to manually update an ad counter histogram.
Constant Value: 0 (0x00000000)
Fields
CREATOR
public static final Creator<FrequencyCapFilters> CREATOR
Public methods
equals
public boolean equals (Object o)
Checks whether the FrequencyCapFilters
objects contain the same information.
Parameters | |
---|---|
o |
Object : the reference object with which to compare. |
Returns | |
---|---|
boolean |
true if this object is the same as the obj
argument; false otherwise. |
getKeyedFrequencyCapsForClickEvents
public Set<KeyedFrequencyCap> getKeyedFrequencyCapsForClickEvents ()
Gets the set of KeyedFrequencyCap
objects that will filter on the AD_EVENT_TYPE_CLICK
event type.
These frequency caps apply to events which correlate to a click as interpreted by an adtech.
Returns | |
---|---|
Set<KeyedFrequencyCap> |
This value cannot be null . |
getKeyedFrequencyCapsForImpressionEvents
public Set<KeyedFrequencyCap> getKeyedFrequencyCapsForImpressionEvents ()
Gets the set of KeyedFrequencyCap
objects that will filter on the AD_EVENT_TYPE_IMPRESSION
event type.
These frequency caps apply to events which correlate to an impression as interpreted by an
adtech. Note that events are not automatically counted when calling AdSelectionManager.reportImpression(ReportImpressionRequest, Executor, OutcomeReceiver)
.
Returns | |
---|---|
Set<KeyedFrequencyCap> |
This value cannot be null . |
getKeyedFrequencyCapsForViewEvents
public Set<KeyedFrequencyCap> getKeyedFrequencyCapsForViewEvents ()
Gets the set of KeyedFrequencyCap
objects that will filter on the AD_EVENT_TYPE_VIEW
event type.
These frequency caps apply to events which correlate to a view as interpreted by an adtech.
Returns | |
---|---|
Set<KeyedFrequencyCap> |
This value cannot be null . |
getKeyedFrequencyCapsForWinEvents
public Set<KeyedFrequencyCap> getKeyedFrequencyCapsForWinEvents ()
Gets the set of KeyedFrequencyCap
objects that will filter on the AD_EVENT_TYPE_WIN
event type.
These frequency caps apply to events for ads that were selected as winners in ad selection. Winning ads are used to automatically increment the associated counter keys on the win event type.
Returns | |
---|---|
Set<KeyedFrequencyCap> |
This value cannot be null . |
hashCode
public int hashCode ()
Returns the hash of the FrequencyCapFilters
object's data.
Returns | |
---|---|
int |
a hash code value for this object. |
toString
public String toString ()
Returns a string representation of the object. In general, the
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Returns | |
---|---|
String |
a string representation of the object. |
writeToParcel
public void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel : This value cannot be null . |
flags |
int : Additional flags about how the object should be written.
May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE .
Value is either 0 or a combination of Parcelable.PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2023-05-25 UTC.