public enum TraversalDirectionEnum extends Enum<TraversalDirectionEnum>
IGASProgram
based on its EdgesEnum
.Enum Constant and Description |
---|
Forward
Directed traversal along the natural direction of the RDF statements
(from Subject to Object).
|
Reverse
Directed traversal along the reverse direction of the RDF statements
(from Object to Subject).
|
Undirected
|
Modifier and Type | Method and Description |
---|---|
EdgesEnum |
asTraversed(EdgesEnum edges)
Interpret the given
EdgesEnum , returning the effective value
required to impose the semantics of this TraversalDirectionEnum . |
static TraversalDirectionEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraversalDirectionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraversalDirectionEnum Forward
public static final TraversalDirectionEnum Reverse
public static final TraversalDirectionEnum Undirected
public static TraversalDirectionEnum[] values()
for (TraversalDirectionEnum c : TraversalDirectionEnum.values()) System.out.println(c);
public static TraversalDirectionEnum 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 EdgesEnum asTraversed(EdgesEnum edges)
EdgesEnum
, returning the effective value
required to impose the semantics of this TraversalDirectionEnum
.edges
- The EdgesEnum
.EdgesEnum
value that will impose the
traversal semantics of this TraversalDirectionEnum
.EdgesEnum.asUndirectedTraversal()
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.