| Enum Constant and Description | 
|---|
| CANCELED | 
| CANCELING | 
| CLEANING | 
| COMPLETE | 
| PENDING | 
| RUNNING | 
| WAITING_FOR_CLEANUP | 
| Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | CLASS_VERSIONClass version string from source code control system. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getDisplayName(java.util.Locale pLocale)Return the status name in the specified Locale. | 
| static java.lang.String | getResourceBundleName()Return the name of our resource bundle. | 
| static Status | getStatusForOrdinal(int pOrdinal)Return the Status that corresponds to the specified ordinal value. | 
| boolean | hasStarted()Return whether this indexing task ever started (in other words,
 not PENDING). | 
| boolean | isFinished()Whether we are done. | 
| boolean | isInProcess()Return whether hits status is in process. | 
| static Status | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Status[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Status PENDING
public static final Status RUNNING
public static final Status WAITING_FOR_CLEANUP
public static final Status CLEANING
public static final Status CANCELING
public static final Status COMPLETE
public static final Status CANCELED
public static final java.lang.String CLASS_VERSION
public static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static 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 nullpublic static java.lang.String getResourceBundleName()
public java.lang.String getDisplayName(java.util.Locale pLocale)
public boolean isInProcess()
public boolean hasStarted()
public boolean isFinished()
public static Status getStatusForOrdinal(int pOrdinal)
pOrdinal - the integer ordinary value.