public enum BinaryHashWorkerStatus extends Enum<BinaryHashWorkerStatus>
| Enum Constant and Description |
|---|
COMPLETED
Worker processed task and was successful.
|
SOURCE_FAILED
The source data could not be acquired from the DataStore.
|
STORE_FAILED
The result could not be stored in the DataStore.
|
WORKER_FAILED
The input file could be read but the worker failed in an unexpected way.
|
| Modifier and Type | Method and Description |
|---|---|
static BinaryHashWorkerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryHashWorkerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryHashWorkerStatus COMPLETED
public static final BinaryHashWorkerStatus SOURCE_FAILED
public static final BinaryHashWorkerStatus STORE_FAILED
public static final BinaryHashWorkerStatus WORKER_FAILED
public static BinaryHashWorkerStatus[] values()
for (BinaryHashWorkerStatus c : BinaryHashWorkerStatus.values()) System.out.println(c);
public static BinaryHashWorkerStatus 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 © 2015–2017 EntIT Software LLC, a Micro Focus company. All rights reserved.