public enum EdgesEnum extends Enum<EdgesEnum>
Enum Constant and Description |
---|
AllEdges
The phase is applied to all edges (both in-edges and out-edges).
|
InEdges
The phase is applied only to the in-edges.
|
NoEdges
The phase is not run.
|
OutEdges
The phase is applied only to the out-edges.
|
Modifier and Type | Method and Description |
---|---|
EdgesEnum |
asUndirectedTraversal()
|
boolean |
doInEdges()
Return
true iff the in-edges will be visited. |
boolean |
doOutEdges()
Return
true iff the out-edges will be visited. |
boolean |
isDirected()
|
static EdgesEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgesEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgesEnum NoEdges
public static final EdgesEnum InEdges
public static final EdgesEnum OutEdges
public static final EdgesEnum AllEdges
public static EdgesEnum[] values()
for (EdgesEnum c : EdgesEnum.values()) System.out.println(c);
public static EdgesEnum 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 doInEdges()
true
iff the in-edges will be visited.public boolean doOutEdges()
true
iff the out-edges will be visited.public boolean isDirected()
public EdgesEnum asUndirectedTraversal()
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.