TrainingExampleRecord.Builder


public static final class TrainingExampleRecord.Builder
extends Object

java.lang.Object
   ↳ android.adservices.ondevicepersonalization.TrainingExampleRecord.Builder


This class is deprecated.
The ODP APIs are deprecated and will not be supported in future Android releases. There is no direct replacement API available. Developers currently integrated with these APIs must cease further integration efforts. For comprehensive details regarding this deprecation and the future roadmap of Privacy Sandbox on Android, please consult the official Privacy Sandbox developer documentation and announcements: https://privacysandbox.google.com

A builder for TrainingExampleRecord

Summary

Public constructors

Builder()

Public methods

TrainingExampleRecord build()

Builds the instance.

TrainingExampleRecord.Builder setResumptionToken(byte... value)

The resumption token byte arrays corresponding to training examples.

TrainingExampleRecord.Builder setTrainingExample(byte... value)

Training example byte arrays.

Inherited methods

Public constructors

Builder

Added in API level 35
public Builder ()

Public methods

build

Added in API level 35
public TrainingExampleRecord build ()

Builds the instance. This builder should not be touched after calling this!

Returns
TrainingExampleRecord This value cannot be null.

setResumptionToken

Added in API level 35
public TrainingExampleRecord.Builder setResumptionToken (byte... value)

The resumption token byte arrays corresponding to training examples. The last processed example's corresponding resumption token will be passed to IsolatedWorker.onTrainingExamples to support resumption.

Parameters
value byte: This value may be null.

Returns
TrainingExampleRecord.Builder This value cannot be null.

setTrainingExample

Added in API level 35
public TrainingExampleRecord.Builder setTrainingExample (byte... value)

Training example byte arrays. The format is a binary serialized tensorflow.Example proto. The maximum allowed example size is 50KB.

Parameters
value byte: This value may be null.

Returns
TrainingExampleRecord.Builder This value cannot be null.