Class DeidentificationJobStatus
java.lang.Object
com.azure.core.util.ExpandableStringEnum<DeidentificationJobStatus>
com.azure.health.deidentification.models.DeidentificationJobStatus
- All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>
public final class DeidentificationJobStatus
extends com.azure.core.util.ExpandableStringEnum<DeidentificationJobStatus>
List of statuses a job can have.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DeidentificationJobStatusJob has been canceled after user request.static final DeidentificationJobStatusJob has completed with all documents failing, or a validation failure.static final DeidentificationJobStatusJob has been submitted and is waiting to be processed.static final DeidentificationJobStatusJob has been started.static final DeidentificationJobStatusJob has completed successfully. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DeidentificationJobStatusfromString(String name) Creates or finds a JobStatus from its string representation.static Collection<DeidentificationJobStatus> values()Gets known JobStatus values.Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, getValue, hashCode, toString, values
-
Field Details
-
NOT_STARTED
Job has been submitted and is waiting to be processed. -
RUNNING
Job has been started. -
SUCCEEDED
Job has completed successfully. All documents have succeeded. -
FAILED
Job has completed with all documents failing, or a validation failure. -
CANCELED
Job has been canceled after user request.
-
-
Constructor Details
-
DeidentificationJobStatus
Deprecated.Use thefromString(String)factory method.Creates a new instance of JobStatus value.
-
-
Method Details
-
fromString
Creates or finds a JobStatus from its string representation.- Parameters:
name- a name to look for.- Returns:
- the corresponding JobStatus.
-
values
Gets known JobStatus values.- Returns:
- known JobStatus values.
-
fromString(String)factory method.