public enum ChangeAction extends Enum<ChangeAction>
Enum Constant and Description |
---|
INSERTED
The focus statement was not in the database before and will be
in the database after the commit.
|
REMOVED
The focus statement was in the database before and will not
be in the database after the commit.
|
UPDATED
This change action can only occur when inference and truth
maintenance are enabled on the database.
|
Modifier and Type | Method and Description |
---|---|
static ChangeAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeAction INSERTED
public static final ChangeAction REMOVED
public static final ChangeAction UPDATED
StatementEnum
). There are
several reasons why a statement will change type rather than be
asserted or deleted:
public static ChangeAction[] values()
for (ChangeAction c : ChangeAction.values()) System.out.println(c);
public static ChangeAction 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 © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.