|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TextRepresentationElement.Type>
net.xqhs.graphs.representation.text.TextRepresentationElement.Type
public static enum TextRepresentationElement.Type
Enumeration containing the types of elements that may appear in a textual graph representation.
Enum Constant Summary | |
---|---|
BRANCH
An edge to a node that has not previously appeared in the representation. |
|
ELEMENT_CONTAINER
The container representation for a graph, that may be part of a multilevel representation. |
|
EXTERNAL_LINK
An edge to a node that is not part of the current subgraph. |
|
INTERNAL_LINK
An edge to a node that has already appeared in the representation (from left to right). |
|
NODE
A node in the graph. |
|
SUBGRAPH
A subgraph. |
Method Summary | |
---|---|
static TextRepresentationElement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TextRepresentationElement.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 TextRepresentationElement.Type NODE
public static final TextRepresentationElement.Type BRANCH
public static final TextRepresentationElement.Type INTERNAL_LINK
public static final TextRepresentationElement.Type EXTERNAL_LINK
public static final TextRepresentationElement.Type SUBGRAPH
public static final TextRepresentationElement.Type ELEMENT_CONTAINER
Method Detail |
---|
public static TextRepresentationElement.Type[] values()
for (TextRepresentationElement.Type c : TextRepresentationElement.Type.values()) System.out.println(c);
public static TextRepresentationElement.Type 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |