public static enum DbRepairStatus.Status extends java.lang.Enum<DbRepairStatus.Status>
| Enum Constant and Description | 
|---|
FAILED  | 
IN_PROGRESS  | 
NOT_STARTED  | 
SUCCESS  | 
| Modifier and Type | Method and Description | 
|---|---|
static DbRepairStatus.Status | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DbRepairStatus.Status[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DbRepairStatus.Status NOT_STARTED
public static final DbRepairStatus.Status IN_PROGRESS
public static final DbRepairStatus.Status SUCCESS
public static final DbRepairStatus.Status FAILED
public static DbRepairStatus.Status[] values()
for (DbRepairStatus.Status c : DbRepairStatus.Status.values()) System.out.println(c);
public static DbRepairStatus.Status valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null