public enum GActionType extends Enum<GActionType>
Enum Constant and Description |
---|
PREDICATE_SUBSTITUTE
Can be used to substitute the predicate of all the triplets with a
specific predicate.
|
REROOTING
Root the graph according to the rdfs:subClassOf relationship.
|
TRANSITIVE_REDUCTION
Perform a transitive reduction of the relationships RDFS.SUBCLASSOF
and/or RDF.TYPE - this treatment removes the relationships which can be
removed according to the transitivity of the predicate rdfs:subClassOf.
|
VERTICES_REDUCTION
Remove of the set of vertices composing the graph.
|
Modifier and Type | Method and Description |
---|---|
static GActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GActionType TRANSITIVE_REDUCTION
public static final GActionType REROOTING
public static final GActionType VERTICES_REDUCTION
public static final GActionType PREDICATE_SUBSTITUTE
public static GActionType[] values()
for (GActionType c : GActionType.values()) System.out.println(c);
public static GActionType 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 © 2014. All rights reserved.