public enum ActionEnum extends Enum<ActionEnum>
IProgram.| Enum Constant and Description |
|---|
Delete
Delete the computed
ISolutions from the IMutableRelation. |
Insert
Write the computed
ISolutions on the IMutableRelation. |
Query
The computed
ISolutions will be materialized for the client. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isMutation()
True iff the
ActionEnum is one of those that writes on the
relation (vs query). |
static ActionEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionEnum Query
ISolutions will be materialized for the client.public static final ActionEnum Insert
ISolutions on the IMutableRelation.public static final ActionEnum Delete
ISolutions from the IMutableRelation.public static ActionEnum[] values()
for (ActionEnum c : ActionEnum.values()) System.out.println(c);
public static ActionEnum 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 nullpublic boolean isMutation()
ActionEnum is one of those that writes on the
relation (vs query).Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.