|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<LarkcKBStatus>
eu.larkc.core.LarkcKBStatus
public enum LarkcKBStatus
Enum used by the LarKC platform to keep track of the LarKC KB status. The life-cycle of a successful initialization of the platform looks as follows:
| Enum Constant Summary | |
|---|---|
INITIALIZED
The KB has been successfully initialized. |
|
INITIALIZING
The KB is initializing. |
|
NOT_INITIALIZED
The KB has not been initialized yet. |
|
| Method Summary | |
|---|---|
static LarkcKBStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LarkcKBStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, 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 LarkcKBStatus NOT_INITIALIZED
public static final LarkcKBStatus INITIALIZING
public static final LarkcKBStatus INITIALIZED
| Method Detail |
|---|
public static LarkcKBStatus[] values()
for (LarkcKBStatus c : LarkcKBStatus.values()) System.out.println(c);
public static LarkcKBStatus 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 null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||