Uses of Interface
helix.graph.model.RegistryValue

Packages that use RegistryValue
helix.graph.model   
helix.graph.model.impl   
helix.graph.model.impl.memory   
 

Uses of RegistryValue in helix.graph.model
 

Methods in helix.graph.model that return RegistryValue
 RegistryValue Registry.get(String key)
           
 RegistryValue RegistryValue.klone()
          Potentially clone this instance.
 

Methods in helix.graph.model with parameters of type RegistryValue
 GSet<E> GSet.findMultiple(String registryKey, RegistryValue registryValue)
           
 E GSet.findUnique(String registryKey, RegistryValue registryValue)
           
 Vertex Graph.findVertex(String registryKey, RegistryValue registryValue)
           
 GSet<Vertex> Graph.findVertices(String registryKey, RegistryValue registryValue)
           
 void Registry.set(String key, RegistryValue value)
           
 

Uses of RegistryValue in helix.graph.model.impl
 

Classes in helix.graph.model.impl that implement RegistryValue
 class AbstractRegistryValue
          an abstract implmentation of Registrable, providing basic mechanisms.
 class ImmutableRegistryValue
          an AbstractRegistrable for Immutable objects
 class RBoolean
           
 class RColorSet
          Implements set of colors to store into Registry
 class RFloat
           
 class RInteger
           
 class RObject
          a memory implementation of a RegistryValue to hold any Object !! please use scarcely !!! note: this can be used for weak references too
 class RString
           
 class RVertex
          a memory implementation of a RegistryValue to hold a single Vertex
 class RVertexArray
          a memory implementation of RegistryValue for arrays (fixed size tuples) of Vertices
 class RVertexList
          a memory implementation of RegistryValue for lists of Vertices
 class RVertexSet
          a memory implementation of RegistryValue for set of Vertices
 class RVoid
          a RegistryValue containing nothing (mostly used for flags)
 

Methods in helix.graph.model.impl that return RegistryValue
 RegistryValue DelegateRegistry.get(String key)
           
 RegistryValue RVertexSet.klone()
           
 RegistryValue RVertexList.klone()
           
 RegistryValue RVertexArray.klone()
           
 RegistryValue RVertex.klone()
           
 RegistryValue RObject.klone()
           
 RegistryValue RColorSet.klone()
           
 RegistryValue ImmutableRegistryValue.klone()
           
 

Methods in helix.graph.model.impl with parameters of type RegistryValue
 Vertex AbstractGraph.findVertex(String registryKey, RegistryValue registryValue)
           
 GSet<Vertex> AbstractGraph.findVertices(String registryKey, RegistryValue registryValue)
           
 void DelegateRegistry.set(String key, RegistryValue value)
           
 

Uses of RegistryValue in helix.graph.model.impl.memory
 

Methods in helix.graph.model.impl.memory that return RegistryValue
 RegistryValue MemRegistry.get(String key)
           
 

Methods in helix.graph.model.impl.memory with parameters of type RegistryValue
 GSet<E> MemGSet.findMultiple(String registryKey, RegistryValue registryValue)
           
 E MemGSet.findUnique(String registryKey, RegistryValue registryValue)
           
 void MemRegistry.set(String key, RegistryValue value)