Job Status
//indico-client-java/com.indico.type/JobStatus
# JobStatus
[jvm]\
enum JobStatus : [Enum](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html)<JobStatus>
## Entries
| | |
|---|---|
| FAILURE | [jvm]<br>FAILURE<br>Job has failed |
| IGNORED | [jvm]<br>IGNORED<br>Ignored. |
| PENDING | [jvm]<br>PENDING<br>Job status not yet known. |
| RECEIVED | [jvm]<br>RECEIVED<br>Event only - Worker received the job. |
| REJECTED | [jvm]<br>REJECTED<br>Events only - Job was rejected. |
| RETRY | [jvm]<br>RETRY<br>Job is being retried. |
| REVOKED | [jvm]<br>REVOKED<br>Job was revoked. |
| STARTED | [jvm]<br>STARTED<br>Worker has started the task. |
| SUCCESS | [jvm]<br>SUCCESS<br>Job was successful. |
| TRAILED | [jvm]<br>TRAILED |
## Properties
| Name | Summary |
|---|---|
| entries | [jvm]<br>val entries: [EnumEntries](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.enums/-enum-entries/index.html)<JobStatus><br>Returns a representation of an immutable list of all enum entries, in the order they're declared. |
| name | [jvm]<br>val name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) |
| ordinal | [jvm]<br>val ordinal: [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) |
## Functions
| Name | Summary |
|---|---|
| valueOf | [jvm]<br>fun valueOf(value: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): JobStatus<br>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.) |
| values | [jvm]<br>fun values(): [Array](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)<JobStatus><br>Returns an array containing the constants of this enum type, in the order they're declared. |
Updated 5 days ago