|
Cytoscape 3.0.1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CyEdge.Type>
org.cytoscape.model.CyEdge.Type
public static enum CyEdge.Type
The Type enum is used by methods in CyNetwork
to restrict
the edges that match a query.
Enum Constant Summary | |
---|---|
ANY
matches any edge |
|
DIRECTED
matches directed edges regardless of whether this node is the source or the target |
|
INCOMING
matches either undirected edges or directed edges that end with this node |
|
OUTGOING
matches either undirected edges or directed edges that start with this node |
|
UNDIRECTED
matches only undirected edges |
Method Summary | |
---|---|
static CyEdge.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CyEdge.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CyEdge.Type UNDIRECTED
public static final CyEdge.Type INCOMING
public static final CyEdge.Type OUTGOING
public static final CyEdge.Type DIRECTED
public static final CyEdge.Type ANY
Method Detail |
---|
public static CyEdge.Type[] values()
for (CyEdge.Type c : CyEdge.Type.values()) System.out.println(c);
public static CyEdge.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
Cytoscape 3.0.1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |