Uses of Class
org.modeshape.graph.NodeConflictBehavior

Packages that use NodeConflictBehavior
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
org.modeshape.graph.connector.path The PathRepository class and its supporting classes provide a default read-only implementation of the connector classes for connectors that only support path-based access to a standard representation of a node
org.modeshape.graph.io Utilities for inputing and outputing larger amounts of data. 
org.modeshape.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
org.modeshape.sequencer.cnd The classes that make up the JCR Compact Node Definition (CND) file sequencer. 
 

Uses of NodeConflictBehavior in org.modeshape.graph
 

Methods in org.modeshape.graph that return NodeConflictBehavior
static NodeConflictBehavior NodeConflictBehavior.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static NodeConflictBehavior[] NodeConflictBehavior.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.modeshape.graph with parameters of type NodeConflictBehavior
protected abstract  T Graph.CreateAction.submit(Location parent, String workspaceName, Name childName, Collection<Property> properties, NodeConflictBehavior conflictBehavior)
           
 

Uses of NodeConflictBehavior in org.modeshape.graph.connector.path
 

Methods in org.modeshape.graph.connector.path with parameters of type NodeConflictBehavior
 PathNode WritablePathWorkspace.createNode(ExecutionContext context, PathNode parentNode, Name name, Map<Name,Property> properties, NodeConflictBehavior conflictBehavior)
          Create a new node with the supplied name, as a child of the supplied parent.
 PathNode WritablePathWorkspace.createNode(ExecutionContext context, String pathToNewNode, Map<Name,Property> properties, NodeConflictBehavior conflictBehavior)
          Create a node at the supplied path.
 PathNode AbstractWritablePathWorkspace.createNode(ExecutionContext context, String pathToNewNode, Map<Name,Property> properties, NodeConflictBehavior conflictBehavior)
           
 

Uses of NodeConflictBehavior in org.modeshape.graph.io
 

Methods in org.modeshape.graph.io that return NodeConflictBehavior
protected  NodeConflictBehavior GraphBatchDestination.createBehaviorFor(Path path)
          Override this method in a subclass to control the NodeConflictBehavior that should be used when creating the node at the supplied path.
 

Methods in org.modeshape.graph.io with parameters of type NodeConflictBehavior
 void GraphBatchDestination.create(NodeConflictBehavior behavior, Path path, Property firstProperty, Property... additionalProperties)
          Create a node at the supplied path and with the supplied attributes, using the supplied behavior in case of a node conflict.
 void Destination.create(NodeConflictBehavior behavior, Path path, Property firstProperty, Property... additionalProperties)
          Create a node at the supplied path and with the supplied attributes, using the supplied behavior in case of a node conflict.
 

Uses of NodeConflictBehavior in org.modeshape.graph.request
 

Fields in org.modeshape.graph.request declared as NodeConflictBehavior
static NodeConflictBehavior MoveBranchRequest.DEFAULT_CONFLICT_BEHAVIOR
           
static NodeConflictBehavior CreateNodeRequest.DEFAULT_CONFLICT_BEHAVIOR
           
static NodeConflictBehavior CopyBranchRequest.DEFAULT_NODE_CONFLICT_BEHAVIOR
           
 

Methods in org.modeshape.graph.request that return NodeConflictBehavior
 NodeConflictBehavior MoveBranchRequest.conflictBehavior()
          Get the expected behavior when copying the branch and the destination already has a node with the same name.
 NodeConflictBehavior CreateNodeRequest.conflictBehavior()
          Get the expected behavior when copying the branch and the destination already has a node with the same name.
 NodeConflictBehavior CopyBranchRequest.nodeConflictBehavior()
          Get the expected behavior when copying the branch and the destination already has a node with the same name.
 

Methods in org.modeshape.graph.request with parameters of type NodeConflictBehavior
 CopyBranchRequest RequestBuilder.copyBranch(Location from, String fromWorkspace, Location into, String intoWorkspace, Name nameForCopy, NodeConflictBehavior conflictBehavior)
          Add a request to copy a branch to another.
 BatchRequestBuilder BatchRequestBuilder.copyBranch(Location from, String fromWorkspace, Location into, String intoWorkspace, Name nameForCopy, NodeConflictBehavior conflictBehavior)
          Add a request to copy a branch to another.
 CreateNodeRequest RequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Iterator<Property> properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 BatchRequestBuilder BatchRequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Iterator<Property> properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 CreateNodeRequest RequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Property[] properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 BatchRequestBuilder BatchRequestBuilder.createNode(Location parentLocation, String workspaceName, Name childName, Property[] properties, NodeConflictBehavior conflictBehavior)
          Add a request to create a node with the given properties under the supplied location.
 MoveBranchRequest RequestBuilder.moveBranch(Location from, Location into, String workspaceName, Name newNameForNode, NodeConflictBehavior conflictBehavior)
          Create a request to move a branch from one location into another.
 MoveBranchRequest RequestBuilder.moveBranch(Location from, Location into, String workspaceName, NodeConflictBehavior conflictBehavior)
          Create a request to move a branch from one location into another.
 BatchRequestBuilder BatchRequestBuilder.moveBranch(Location from, Location into, String workspaceName, NodeConflictBehavior conflictBehavior)
          Create a request to move a branch from one location into another.
 

Constructors in org.modeshape.graph.request with parameters of type NodeConflictBehavior
CopyBranchRequest(Location from, String fromWorkspace, Location into, String intoWorkspace, Name nameForCopy, NodeConflictBehavior nodeConflictBehavior)
          Create a request to copy a branch to another.
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, NodeConflictBehavior conflictBehavior, Iterable<Property> properties)
          Create a request to create a node with the given properties under the supplied location.
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, NodeConflictBehavior conflictBehavior, Iterator<Property> properties)
          Create a request to create a node with the given properties under the supplied location.
CreateNodeRequest(Location parentLocation, String workspaceName, Name childName, NodeConflictBehavior conflictBehavior, Property... properties)
          Create a request to create a node with the given properties under the supplied location.
MoveBranchRequest(Location from, Location into, Location before, String workspaceName, Name newNameForMovedNode, NodeConflictBehavior conflictBehavior)
          Create a request to move a branch from one location into another.
MoveBranchRequest(Location from, Location into, String workspaceName, NodeConflictBehavior conflictBehavior)
          Create a request to move a branch from one location into another.
 

Uses of NodeConflictBehavior in org.modeshape.sequencer.cnd
 

Methods in org.modeshape.sequencer.cnd with parameters of type NodeConflictBehavior
 void CndSequencer.OutputDestination.create(NodeConflictBehavior behavior, Path path, Property firstProperty, Property... additionalProperties)
          Create a node at the supplied path and with the supplied attributes, using the supplied behavior in case of a node conflict.
 



Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.