public static enum ResynchronizationTask.TaskStatus extends Enum<ResynchronizationTask.TaskStatus>
| Enum Constant and Description |
|---|
EXECUTING |
PLANNED |
SYNCHRONIZING |
| Modifier and Type | Method and Description |
|---|---|
static ResynchronizationTask.TaskStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResynchronizationTask.TaskStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResynchronizationTask.TaskStatus PLANNED
public static final ResynchronizationTask.TaskStatus EXECUTING
public static final ResynchronizationTask.TaskStatus SYNCHRONIZING
public static ResynchronizationTask.TaskStatus[] values()
for (ResynchronizationTask.TaskStatus c : ResynchronizationTask.TaskStatus.values()) System.out.println(c);
public static ResynchronizationTask.TaskStatus 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 © 2023. All rights reserved.