public enum GRAPH_ATTRIBUTES extends Enum<GRAPH_ATTRIBUTES>
| Enum Constant and Description |
|---|
GRAPH_LABELS
Names list of labels of a graph, attribute
LabelableElement.getLabels(). |
GRAPH_LAYERS
Names list of layers of graph attribute
Graph.getLayers() |
GRAPH_NODES
Names list of nodes of a graph, attribute
Graph.getNodes(). |
GRAPH_RELATIONS
Names list of relations of a graph, attribute
Graph.getRelations(). |
LABEL_LABELS
Names list of labels of a label, attribute
LabelableElement.getLabels(). |
LABEL_NAME
Names the name of a label, attribute
Label.getName(). |
LABEL_NAMESPACE
Names the namespace of a label, attribute
Label.getNamespace(). |
LABEL_VALUE
Names the value of a label, attribute
Label.getValue(). |
LAYER_LABELS
Names list of labels of a layer, attribute
LabelableElement.getLabels(). |
LAYER_NODES
Names list of nodes of a layer, attribute
Graph.getNodes(). |
LAYER_RELATIONS
Names list of relations of a layer, attribute
Graph.getRelations(). |
NODE_LABELS
Names list of labels of a node, attribute
LabelableElement.getLabels(). |
RELATION_LABELS
Names list of labels of a relation, attribute
LabelableElement.getLabels(). |
RELATION_SOURCE
Names the source of a relation, attribute
Relation.getSource(). |
RELATION_TARGET
Names the target of a relation, attribute
Relation.getTarget(). |
| Modifier and Type | Method and Description |
|---|---|
static GRAPH_ATTRIBUTES |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GRAPH_ATTRIBUTES[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GRAPH_ATTRIBUTES LABEL_NAMESPACE
Label.getNamespace().public static final GRAPH_ATTRIBUTES LABEL_NAME
Label.getName().public static final GRAPH_ATTRIBUTES LABEL_VALUE
Label.getValue().public static final GRAPH_ATTRIBUTES LABEL_LABELS
LabelableElement.getLabels().public static final GRAPH_ATTRIBUTES RELATION_SOURCE
Relation.getSource().public static final GRAPH_ATTRIBUTES RELATION_TARGET
Relation.getTarget().public static final GRAPH_ATTRIBUTES RELATION_LABELS
LabelableElement.getLabels().public static final GRAPH_ATTRIBUTES NODE_LABELS
LabelableElement.getLabels().public static final GRAPH_ATTRIBUTES GRAPH_LABELS
LabelableElement.getLabels().public static final GRAPH_ATTRIBUTES GRAPH_NODES
Graph.getNodes().public static final GRAPH_ATTRIBUTES GRAPH_RELATIONS
Graph.getRelations().public static final GRAPH_ATTRIBUTES GRAPH_LAYERS
Graph.getLayers()public static final GRAPH_ATTRIBUTES LAYER_LABELS
LabelableElement.getLabels().public static final GRAPH_ATTRIBUTES LAYER_NODES
Graph.getNodes().public static final GRAPH_ATTRIBUTES LAYER_RELATIONS
Graph.getRelations().public static GRAPH_ATTRIBUTES[] values()
for (GRAPH_ATTRIBUTES c : GRAPH_ATTRIBUTES.values()) System.out.println(c);
public static GRAPH_ATTRIBUTES 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 © 2009–2020 Humboldt-Universität zu Berlin, INRIA. All rights reserved.