public enum ActionEnum extends Enum<ActionEnum>
IProgram
.Enum Constant and Description |
---|
Delete
Delete the computed
ISolution s from the IMutableRelation . |
Insert
Write the computed
ISolution s on the IMutableRelation . |
Query
The computed
ISolution s 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
ISolution
s will be materialized for the client.public static final ActionEnum Insert
ISolution
s on the IMutableRelation
.public static final ActionEnum Delete
ISolution
s 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.