Uses of Interface
org.jboss.dna.graph.Graph.Conjunction

Packages that use Graph.Conjunction
org.jboss.dna.graph The JBoss DNA Graph API defines the types that allow you to work with content organized as a graph. 
 

Uses of Graph.Conjunction in org.jboss.dna.graph
 

Subinterfaces of Graph.Conjunction in org.jboss.dna.graph
static interface Graph.BatchConjunction
           
static interface Graph.Create<Next>
          The interface for defining additional properties on a new node.
static interface Graph.CreateAt<Next>
          The interface for defining additional properties on a new node.
static interface Graph.GetNodeConjunction<Next>
           
 

Classes in org.jboss.dna.graph that implement Graph.Conjunction
 class Graph.AddValueAction<T>
           
 class Graph.CloneAction<T>
           
 class Graph.CloneTargetAction<T>
           
 class Graph.RemoveValueAction<T>
           
 

Methods in org.jboss.dna.graph that return Graph.Conjunction
 Graph.Conjunction<Graph> Graph.delete(Location at)
          Request to delete the node at the given location.
 Graph.Conjunction<Graph> Graph.delete(Node at)
          Request to delete the specified node.
 Graph.Conjunction<Graph> Graph.delete(Path at)
          Request to delete the node at the given path.
 Graph.Conjunction<Graph> Graph.delete(Property idProperty)
          Request to delete the node with the given unique identification property.
 Graph.Conjunction<Graph> Graph.delete(Property firstIdProperty, Property... additionalIdProperties)
          Request to delete the node with the given identification properties.
 Graph.Conjunction<Graph> Graph.delete(String atPath)
          Request to delete the node at the given path.
 Graph.Conjunction<Graph> Graph.delete(UUID at)
          Request to delete the node with the given UUID.
 

Methods in org.jboss.dna.graph that return types with arguments of type Graph.Conjunction
 Graph.CreateNode<Graph.Conjunction<Graph>> Graph.createUnder(Location parent)
          Begin the request to create a node under the existing parent node at the supplied location.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(File file)
          Import the content from the XML file at the supplied file, specifying via the returned object where the content is to be imported.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(InputStream stream)
          Import the content from the provided stream of XML data, specifying via the returned object where the content is to be imported.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(String pathToFile)
          Import the content from the XML file at the supplied file location, specifying via the returned object where the content is to be imported.
 Graph.ImportInto<Graph.Conjunction<Graph>> Graph.importXmlFrom(URI uri)
          Import the content from the XML file at the supplied URI, specifying via the returned object where the content is to be imported.
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Location from)
          Begin the request to move a node at the specified location into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Node from)
          Begin the request to move the specified node into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Path from)
          Begin the request to move a node located at the supplied path into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Property idProperty)
          Begin the request to move a node with the specified unique identification property into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(Property firstIdProperty, Property... additionalIdProperties)
          Begin the request to move a node with the specified identification properties into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(String fromPath)
          Begin the request to move a node located at the supplied path into a parent node at a different location, which is specified via the into(...)
 Graph.Move<Graph.Conjunction<Graph>> Graph.move(UUID from)
          Begin the request to move a node with the specified unique identifier into a parent node at a different location, which is specified via the into(...)
 Graph.On<Graph.Conjunction<Graph>> Graph.remove(Name... propertyNames)
          Remove properties from the node at the given location.
 Graph.On<Graph.Conjunction<Graph>> Graph.remove(String... propertyNames)
          Remove properties from the node at the given location.
 Graph.SetValues<Graph.Conjunction<Graph>> Graph.set(Name propertyName)
          Set a property on a node, starting with the name.
 Graph.On<Graph.Conjunction<Graph>> Graph.set(Property... properties)
          Set the properties on a node.
 Graph.SetValues<Graph.Conjunction<Graph>> Graph.set(String propertyName)
          Set a property on a node, starting with the name.
 



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