public enum KBStatus extends Enum<KBStatus>
| Enum Constant and Description |
|---|
KBCHECKED
KB is preprocessed and consistency checked
|
KBCLASSIFIED
KB is classified
|
KBEMPTY
no axioms loaded yet; not used in TBox
|
KBLOADING
axioms are added to the KB, no preprocessing done
|
KBREALISED
KB is realised
|
| Modifier and Type | Method and Description |
|---|---|
static KBStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KBStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KBStatus KBEMPTY
public static final KBStatus KBLOADING
public static final KBStatus KBCHECKED
public static final KBStatus KBCLASSIFIED
public static final KBStatus KBREALISED
public static KBStatus[] values()
for (KBStatus c : KBStatus.values()) System.out.println(c);
public static KBStatus 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 © 2016 The University of Manchester. All rights reserved.