Uses of Interface
org.modeshape.graph.Graph.Create

Packages that use Graph.Create
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
org.modeshape.repository The components and services that make up ModeShape's lower-level graph engine, which is used within its JCR Engine. 
 

Uses of Graph.Create in org.modeshape.graph
 

Classes in org.modeshape.graph that implement Graph.Create
protected  class Graph.CreateAction<T>
           
 

Methods in org.modeshape.graph that return Graph.Create
 Graph.Create<Next> Graph.Create.and(Iterable<Property> properties)
          Specify property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.and(Iterable<Property> properties)
           
 Graph.Create<Next> Graph.Create.and(Name propertyName, Object... values)
          Specify a property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.and(Name name, Object... values)
           
 Graph.Create<Next> Graph.Create.and(Property property)
          Specify a property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.and(Property property)
           
 Graph.Create<Next> Graph.Create.and(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.Create<T> Graph.CreateAction.and(Property property, Property... additionalProperties)
           
 Graph.Create<Next> Graph.Create.and(String propertyName, Object... values)
          Specify a property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.and(String name, Object... values)
           
 Graph.Create<Next> Graph.Create.and(UUID uuid)
          Specify the UUID that should the new node should have.
 Graph.Create<T> Graph.CreateAction.and(UUID uuid)
           
 Graph.Create<Next> Graph.Create.byAppending()
          Create the node if it does not exist by appending or adjusting the same-name-sibling index).
 Graph.Create<Graph> Graph.create(Path at)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(Path at, Iterable<Property> properties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at, Iterable<Property> properties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(Path at, Property property)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at, Property property)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(Path at, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(Path at, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(String atPath)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(String atPath)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(String atPath, Property property)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(String atPath, Property property)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph> Graph.create(String atPath, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Graph.Batch> Graph.Batch.create(String atPath, Property firstProperty, Property... additionalProperties)
          Begin the request to create a node located at the supplied path.
 Graph.Create<Next> Graph.Create.ifAbsent()
          Create the node only if there is no existing node with the same name (ignoring same-name-sibling indexes).
 Graph.Create<Next> Graph.CreateNodeNamed.nodeNamed(Name nodeName)
          Specify the name of the node that is to be created.
 Graph.Create<Next> Graph.CreateNodeNamed.nodeNamed(String nodeName)
          Specify the name of the node that is to be created.
 Graph.Create<Next> Graph.Create.orReplace()
          Create the node if it does not exist, or replace any existing node that has the same name (ignoring same-name-sibling indexes).
 Graph.Create<Next> Graph.Create.orUpdate()
          Create the node if it does not exist, or update any existing node that has the same name (ignoring same-name-sibling indexes).
 Graph.Create<Next> Graph.Create.with(Iterable<Property> properties)
          Specify property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.with(Iterable<Property> properties)
           
 Graph.Create<Next> Graph.Create.with(Name propertyName, Object... values)
          Specify a property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.with(Name name, Object... values)
           
 Graph.Create<Next> Graph.Create.with(Property property)
          Specify a property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.with(Property property)
           
 Graph.Create<Next> Graph.Create.with(Property firstProperty, Property... additionalProperties)
          Specify properties that should the new node should have.
 Graph.Create<T> Graph.CreateAction.with(Property property, Property... additionalProperties)
           
 Graph.Create<Next> Graph.Create.with(String propertyName, Object... values)
          Specify a property that should the new node should have.
 Graph.Create<T> Graph.CreateAction.with(String name, Object... values)
           
 Graph.Create<Next> Graph.Create.with(UUID uuid)
          Specify the UUID that should the new node should have.
 Graph.Create<T> Graph.CreateAction.with(UUID uuid)
           
 

Uses of Graph.Create in org.modeshape.repository
 

Methods in org.modeshape.repository that return Graph.Create
protected  Graph.Create<Graph.Batch> ModeShapeConfiguration.GraphReturnable.createIfMissing(Name segment)
          Create the node at the supplied path under the current path, and return the Create operation for the last node created.
protected  Graph.Create<Graph.Batch> ModeShapeConfiguration.GraphReturnable.createIfMissing(Name child, String... segments)
          Create the node at the supplied path under the current path, and return the Create operation for the last node created.
protected  Graph.Create<Graph.Batch> ModeShapeConfiguration.GraphReturnable.createIfMissing(Path path, Name... segments)
          Create the node at the supplied path under the current path, and return the Create operation for the last node created.
 



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