Uses of Class
org.modeshape.graph.connector.base.MapNode

Packages that use MapNode
org.modeshape.connector.infinispan The classes that make up the connector that stores content in a deployed instance of Infinispan. 
org.modeshape.connector.jbosscache The classes that make up the connector that stores content in a JBoss Cache instance. 
org.modeshape.graph.connector.base This package defines a series of classes that can serve as base classes for a connector implementation. 
org.modeshape.graph.connector.inmemory The In-Memory Connector represents a connector that maintains a graph in transient in-process memory. 
 

Uses of MapNode in org.modeshape.connector.infinispan
 

Subclasses of MapNode in org.modeshape.connector.infinispan
 class InfinispanNode
          A specialization of the MapNode.
 

Uses of MapNode in org.modeshape.connector.jbosscache
 

Subclasses of MapNode in org.modeshape.connector.jbosscache
 class JBossCacheNode
          A specialization of the MapNode.
 

Uses of MapNode in org.modeshape.graph.connector.base
 

Classes in org.modeshape.graph.connector.base with type parameters of type MapNode
 class MapTransaction<NodeType extends MapNode,WorkspaceType extends MapWorkspace<NodeType>>
          An implementation of Transaction that maintains a cache of nodes by their hash (or UUID).
 class MapWorkspace<NodeType extends MapNode>
          The Workspace implementation that represents all nodes as MapNode objects and stores them keyed by their UUID.
 class StandardMapWorkspace<NodeType extends MapNode>
          The Workspace implementation that represents all nodes as MapNode objects and stores them within a Map keyed by their UUID.
 

Methods in org.modeshape.graph.connector.base that return MapNode
 MapNode MapNode.clone()
           This method never clones the changes.
 MapNode MapNode.freeze()
          Return the frozen node with all internal state reflective of any changes.
 MapNode MapNode.withChild(int index, UUID child)
          Create a copy of this node except adding the supplied node into the existing children at the specified index.
 MapNode MapNode.withChild(UUID child)
          Create a copy of this node except adding the supplied node at the end of the existing children.
 MapNode MapNode.withName(Path.Segment name)
          Create a copy of this node except using the supplied name.
 MapNode MapNode.withoutChild(UUID child)
          Create a copy of this node except without the supplied child node.
 MapNode MapNode.withoutChildren()
          Create a copy of this node except with none of the children.
 MapNode MapNode.withoutProperties()
           
 MapNode MapNode.withoutProperty(Name propertyName)
          Create a copy of this node except with the new property.
 MapNode MapNode.withParent(UUID parent)
          Create a copy of this node except using the supplied parent.
 MapNode MapNode.withProperties(Iterable<Property> propertiesToSet, Iterable<Name> propertiesToRemove, boolean removeAllExisting)
          Create a copy of this node except with the changes to the properties.
 MapNode MapNode.withProperty(Property property)
          Create a copy of this node except with the new property.
 

Uses of MapNode in org.modeshape.graph.connector.inmemory
 

Subclasses of MapNode in org.modeshape.graph.connector.inmemory
 class InMemoryNode
          A specialization of the MapNode.
 



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