WorkMetricsInfo.State


enum WorkMetricsInfo.State : Enum


Summary

Enum Values

CANCELLED

Used to indicate that the androidx.work.WorkRequest period has been cancelled.

ENQUEUED_BLOCKED

Used to indicate that the androidx.work.WorkRequest period is enqueued and still active but blocked by pre-requisite work.

ENQUEUED_PENDING

Used to indicate that the androidx.work.WorkRequest period is enqueued and still active and will run when its constraints are met and resources are available.

FAILED

Used to indicate that this androidx.work.WorkRequest period completed in a failed state.

OBSOLETE_UPDATED

Used to indicate that the androidx.work.WorkRequest period is obsolete because the androidx.work.WorkRequest was updated.

RUNNING

Used to indicate that this androidx.work.WorkRequest period is currently running.

SUCCEEDED

Used to indicate that this androidx.work.WorkRequest period completed in a successful state.

Public functions

WorkMetricsInfo.State
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Array<WorkMetricsInfo.State>

Returns an array containing the constants of this enum type, in the order they're declared.

Public properties

EnumEntries<WorkMetricsInfo.State>

Returns an immutable kotlin.enums.EnumEntries list containing the constants of this enum type, in the order they're declared.

Enum Values

CANCELLED

val WorkMetricsInfo.State.CANCELLEDWorkMetricsInfo.State

Used to indicate that the androidx.work.WorkRequest period has been cancelled.

ENQUEUED_BLOCKED

val WorkMetricsInfo.State.ENQUEUED_BLOCKEDWorkMetricsInfo.State

Used to indicate that the androidx.work.WorkRequest period is enqueued and still active but blocked by pre-requisite work.

ENQUEUED_PENDING

val WorkMetricsInfo.State.ENQUEUED_PENDINGWorkMetricsInfo.State

Used to indicate that the androidx.work.WorkRequest period is enqueued and still active and will run when its constraints are met and resources are available.

FAILED

val WorkMetricsInfo.State.FAILEDWorkMetricsInfo.State

Used to indicate that this androidx.work.WorkRequest period completed in a failed state.

OBSOLETE_UPDATED

val WorkMetricsInfo.State.OBSOLETE_UPDATEDWorkMetricsInfo.State

Used to indicate that the androidx.work.WorkRequest period is obsolete because the androidx.work.WorkRequest was updated.

RUNNING

val WorkMetricsInfo.State.RUNNINGWorkMetricsInfo.State

Used to indicate that this androidx.work.WorkRequest period is currently running.

SUCCEEDED

val WorkMetricsInfo.State.SUCCEEDEDWorkMetricsInfo.State

Used to indicate that this androidx.work.WorkRequest period completed in a successful state.

Public functions

valueOf

Added in 2.12.0-beta01
fun valueOf(value: String): WorkMetricsInfo.State

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

Added in 2.12.0-beta01
fun values(): Array<WorkMetricsInfo.State>

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

The function returns a new instance of the array on every call. The array could be mutated, so working with it may also require defensive copying. Consider using entries property as a more efficient alternative returning an immutable list of enum entries.

Public properties

entries

val entriesEnumEntries<WorkMetricsInfo.State>

Returns an immutable kotlin.enums.EnumEntries list containing the constants of this enum type, in the order they're declared.