Class GraphDataFeatures
java.lang.Object
com.orchestranetworks.addon.dmdv.data.ui.GraphDataFeatures
Describes features of data value graphs. When writing your own service to display a data value and relationship graph you can enable or disable these features.
Use the
GraphDataSpec
disableFeatures()
and enableFeatures()
methods to determine feature availability in a graph.
Note that all features apply to configured data value graphs. However, only RECORD_DETAILS
applies to default graphs.- Since:
- 1.3.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final GraphDataFeatures
Closes the displayed child nodes.static final GraphDataFeatures
Closes the displayed parent nodes.static final GraphDataFeatures
Closes source nodes using the Collapseservice when users right-click a node . static final GraphDataFeatures
Closes target nodes using the Collapseservice when users right-click a node . static final GraphDataFeatures
Displays child nodes using the Expandservice when users right-click a node. static final GraphDataFeatures
Displays parent nodes using the Expandservice when users right-click a node. static final GraphDataFeatures
Displays source nodes using the Expandservice when users right-click a node. static final GraphDataFeatures
Displays target nodes using the Expandservice when users right-click a node. static final GraphDataFeatures
Accesses link details through the Show link details service when users right-click a relationship.static final GraphDataFeatures
Accesses record details through the Open record service or when users double-click a node.static final GraphDataFeatures
Recursively displays child nodes using the Recursively expand children service when users right-click a node.static final GraphDataFeatures
Recursively displays parent nodes using the Recursively expand parents service when users right-click a node.static final GraphDataFeatures
Recursively displays source nodes using the Recursively expand sources service when users right-click a node.static final GraphDataFeatures
Recursively displays target nodes using the Recursively expand targets service when users right-click a node.static final GraphDataFeatures
Describes those features are unknown. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Returns the string representation of this feature.static GraphDataFeatures
Returns theGraphDataFeatures
based on specific string.
-
Field Details
-
UNKNOWN
Describes those features are unknown. -
RECORD_DETAILS
Accesses record details through the Open record service or when users double-click a node. -
LINK_DETAILS
Accesses link details through the Show link details service when users right-click a relationship. -
COLLAPSE_CHILDREN
Closes the displayed child nodes. -
COLLAPSE_PARENTS
Closes the displayed parent nodes. -
COLLAPSE_SOURCES
Closes source nodes using the Collapseservice when users right-click a node . -
COLLAPSE_TARGETS
Closes target nodes using the Collapseservice when users right-click a node . -
EXPAND_CHILDREN
Displays child nodes using the Expandservice when users right-click a node. -
EXPAND_PARENTS
Displays parent nodes using the Expandservice when users right-click a node. -
EXPAND_SOURCES
Displays source nodes using the Expandservice when users right-click a node. -
EXPAND_TARGETS
Displays target nodes using the Expandservice when users right-click a node. -
RECURSIVELY_EXPAND_CHILDREN
Recursively displays child nodes using the Recursively expand children service when users right-click a node. -
RECURSIVELY_EXPAND_PARENTS
Recursively displays parent nodes using the Recursively expand parents service when users right-click a node. -
RECURSIVELY_EXPAND_SOURCES
Recursively displays source nodes using the Recursively expand sources service when users right-click a node. -
RECURSIVELY_EXPAND_TARGETS
Recursively displays target nodes using the Recursively expand targets service when users right-click a node.
-
-
Method Details
-
getValue
Returns the string representation of this feature. -
parse
Returns theGraphDataFeatures
based on specific string.- Parameters:
value
- the value of GraphDataFeatures.
-