public enum MarkupWorkerStatus extends Enum<MarkupWorkerStatus>
| Enum Constant and Description |
|---|
COMPLETED
Worker processed task and was successful.
|
WORKER_FAILED
The worker failed in an unexpected way.
|
| Modifier and Type | Method and Description |
|---|---|
static MarkupWorkerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarkupWorkerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkupWorkerStatus COMPLETED
public static final MarkupWorkerStatus WORKER_FAILED
public static MarkupWorkerStatus[] values()
for (MarkupWorkerStatus c : MarkupWorkerStatus.values()) System.out.println(c);
public static MarkupWorkerStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2023 EntIT Software LLC, a Micro Focus company. All rights reserved.