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
FieldsModifier and TypeFieldDescriptionstatic final GraphDataFeaturesCloses the displayed child nodes.static final GraphDataFeaturesCloses the displayed parent nodes.static final GraphDataFeaturesCloses source nodes using the Collapseservice when users right-click a node . static final GraphDataFeaturesCloses target nodes using the Collapseservice when users right-click a node . static final GraphDataFeaturesDisplays child nodes using the Expandservice when users right-click a node. static final GraphDataFeaturesDisplays parent nodes using the Expandservice when users right-click a node. static final GraphDataFeaturesDisplays source nodes using the Expandservice when users right-click a node. static final GraphDataFeaturesDisplays target nodes using the Expandservice when users right-click a node. static final GraphDataFeaturesAccesses link details through the Show link details service when users right-click a relationship.static final GraphDataFeaturesAccesses record details through the Open record service or when users double-click a node.static final GraphDataFeaturesRecursively displays child nodes using the Recursively expand children service when users right-click a node.static final GraphDataFeaturesRecursively displays parent nodes using the Recursively expand parents service when users right-click a node.static final GraphDataFeaturesRecursively displays source nodes using the Recursively expand sources service when users right-click a node.static final GraphDataFeaturesRecursively displays target nodes using the Recursively expand targets service when users right-click a node.static final GraphDataFeaturesDescribes those features are unknown. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()Returns the string representation of this feature.static GraphDataFeaturesReturns theGraphDataFeaturesbased 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 theGraphDataFeaturesbased on specific string.- Parameters:
value- the value of GraphDataFeatures.
-