Uses of Class
clarion.system.AbstractChunk

Packages that use AbstractChunk
clarion.system   
 

Uses of AbstractChunk in clarion.system
 

Classes in clarion.system with type parameters of type AbstractChunk
 class AbstractChunkCollection<C extends AbstractChunk>
          This class implements a chunk collection within CLARION.
 

Subclasses of AbstractChunk in clarion.system
 class AbstractAction
          This class implements an action chunk within CLARION.
 class AbstractOutputChunk
          This class implements an output chunk within CLARION.
 class DimensionlessOutputChunk
          This class implements a dimension-less output chunk within CLARION.
 class DriveStrength
          This class implements a drive strength within CLARION.
 class ExternalAction
          This class implements an external action within CLARION.
 class Goal
          This class implements a goal within CLARION.
 class GoalAction
          This class implements a goal action within CLARION.
 class WorkingMemoryAction
          This class implements a working memory action within CLARION.
 

Methods in clarion.system that return AbstractChunk
abstract  AbstractChunk AbstractChunk.clone()
          Clones the chunk (including all of it's dimensions).
 AbstractChunk WorkingMemory.get(java.lang.Object ID)
          Gets the chunk from working memory with the specified ID.
 AbstractChunk WorkingMemory.getSpecializedWMChunk(int Index)
          Gets the chunk from the specialized working memory chunk list at the specified Index.
 AbstractChunk WorkingMemory.getSpecializedWMChunk(java.lang.Object ID)
          Gets the chunk from the specialized working memory chunk list with the specified ID.
 AbstractChunk WorkingMemory.remove(int Index)
          Removes a chunk from working memory.
 

Methods in clarion.system that return types with arguments of type AbstractChunk
 java.util.Collection<AbstractChunk> WorkingMemory.getSpecializedWMChunks()
          Gets a collection of the specialized working memory chunks.
 

Methods in clarion.system with parameters of type AbstractChunk
 boolean WorkingMemory.add(AbstractChunk C)
          Adds a chunk to working memory.
 boolean WorkingMemory.addSpecializedWMChunk(AbstractChunk C)
          Adds a working memory chunk to the list of specialized working memory chunks.
 

Method parameters in clarion.system with type arguments of type AbstractChunk
 boolean WorkingMemory.addAll(java.util.Collection<? extends AbstractChunk> C)
          Adds a collection of chunks to working memory.
 boolean WorkingMemory.addSpecializedWMChunks(java.util.Collection<AbstractChunk> Chunks)
          Adds a collection of specialized working memory chunks to the list of specialized working memory chunks.
 

Constructor parameters in clarion.system with type arguments of type AbstractChunk
SpecializedWMChunkCollection(java.util.Collection<? extends AbstractChunk> wmc)
          Initializes a specialized working memory chunk collection with the collection of specialized working memory chunks specified.
SpecializedWMChunkCollection(java.util.Map<? extends java.lang.Object,? extends AbstractChunk> map)
          Initializes the specialized working memory chunk collection with the map of specialized working memory chunks.