| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Status>
atg.endeca.index.admin.Status
public enum Status
A basic status enum for indexing tasks.
Created: November 23 2011
| Enum Constant Summary | |
|---|---|
| CANCELED | |
| CANCELING | |
| CLEANING | |
| COMPLETE | |
| PENDING | |
| RUNNING | |
| WAITING_FOR_CLEANUP | |
| Field Summary | |
|---|---|
| static java.lang.String | CLASS_VERSIONClass version string from source code control system. | 
| Method Summary | |
|---|---|
|  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. | 
|  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. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
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
| Field Detail | 
|---|
public static final java.lang.String CLASS_VERSION
| Method Detail | 
|---|
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 name
java.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()
| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||