public static enum KnowledgeBase.ChangeType extends Enum<KnowledgeBase.ChangeType>
| Enum Constant and Description |
|---|
ABOX_ADD |
ABOX_DEL |
RBOX_ADD |
RBOX_DEL |
TBOX_ADD |
TBOX_DEL |
| Modifier and Type | Method and Description |
|---|---|
static KnowledgeBase.ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KnowledgeBase.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KnowledgeBase.ChangeType ABOX_ADD
public static final KnowledgeBase.ChangeType ABOX_DEL
public static final KnowledgeBase.ChangeType TBOX_ADD
public static final KnowledgeBase.ChangeType TBOX_DEL
public static final KnowledgeBase.ChangeType RBOX_ADD
public static final KnowledgeBase.ChangeType RBOX_DEL
public static KnowledgeBase.ChangeType[] values()
for (KnowledgeBase.ChangeType c : KnowledgeBase.ChangeType.values()) System.out.println(c);
public static KnowledgeBase.ChangeType 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 © 2019. All rights reserved.