PlannedExerciseBlock.Builder


public static final class PlannedExerciseBlock.Builder
extends Object

java.lang.Object
   ↳ android.health.connect.datatypes.PlannedExerciseBlock.Builder


Builder of PlannedExerciseBlock.

Summary

Public constructors

Builder(int repetitions)

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

Builder

Added in API level 35
Also in U Extensions 13
public Builder (int repetitions)

Parameters
repetitions int: The number of times this block should be repeated by the user.

Public methods

addStep

Added in API level 35
Also in U Extensions 13
public PlannedExerciseBlock.Builder addStep (PlannedExerciseStep step)

Adds a PlannedExerciseStep.

Parameters
step PlannedExerciseStep: This value cannot be null.

Returns
PlannedExerciseBlock.Builder This value cannot be null.

build

Added in API level 35
Also in U Extensions 13
public PlannedExerciseBlock build ()

Returns
PlannedExerciseBlock Object of PlannedExerciseBlock. This value cannot be null.

clearSteps

Added in API level 35
Also in U Extensions 13
public PlannedExerciseBlock.Builder clearSteps ()

Clears the PlannedExerciseStep entries.

Returns
PlannedExerciseBlock.Builder This value cannot be null.

setDescription

Added in API level 35
Also in U Extensions 13
public PlannedExerciseBlock.Builder setDescription (CharSequence description)

Sets the description.

Parameters
description CharSequence: This value may be null.

Returns
PlannedExerciseBlock.Builder This value cannot be null.

setRepetitions

Added in API level 35
Also in U Extensions 13
public PlannedExerciseBlock.Builder setRepetitions (int repetitions)

Sets the number of repetitions.

Parameters
repetitions int

Returns
PlannedExerciseBlock.Builder This value cannot be null.

setSteps

Added in API level 35
Also in U Extensions 13
public PlannedExerciseBlock.Builder setSteps (List<PlannedExerciseStep> steps)

Sets the PlannedExerciseStep entries.

Parameters
steps List: This value cannot be null.

Returns
PlannedExerciseBlock.Builder This value cannot be null.