public enum IndexingService extends java.lang.Enum<IndexingService>
IQueryRuntimeContext
implementation.Enum Constant and Description |
---|
INSTANCES
Enables enumeration of instances and reverse-navigation.
|
NOTIFICATIONS
The indexer can provide notifications about changes in the model.
|
STATISTICS
Cardinality information is available.
|
Modifier and Type | Method and Description |
---|---|
static IndexingService |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexingService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexingService STATISTICS
IQueryRuntimeContext#countTuples(IInputKey, org.eclipse.viatra.query.runtime.matchers.tuple.Tuple)
public static final IndexingService NOTIFICATIONS
public static final IndexingService INSTANCES
public static IndexingService[] values()
for (IndexingService c : IndexingService.values()) System.out.println(c);
public static IndexingService valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null