Uses of Interface
gov.nasa.arc.brahms.vm.api.common.IConcept

Packages that use IConcept
brahms.communication   
gov.nasa.arc.brahms.vm.api.common   
gov.nasa.arc.brahms.vm.api.components   
gov.nasa.arc.brahms.vm.api.jac   
gov.nasa.arc.brahms.vm.api.jagt   
gov.nasa.arc.brahms.vm.api.jsvc   
 

Uses of IConcept in brahms.communication
 

Methods in brahms.communication that return IConcept
static IConcept CommunicativeAct.getConceptPropertyValue(IObject communicativeAct, CommunicativeAct.MAP map, java.lang.String key, IContext ctx)
          Returns the IConcept value keyed to the given key in the map identified by the given MAP constant in the given communicative act.
 

Methods in brahms.communication with parameters of type IConcept
 void CommunicativeAct.setPropertyValue(CommunicativeAct.MAP map, java.lang.String key, IConcept value, IContext ctx)
          Sets a property value for the communicative act.
static void CommunicativeAct.setPropertyValue(IObject communicativeAct, CommunicativeAct.MAP map, java.lang.String key, IConcept value, IContext ctx)
          Sets a property value for the specified communicative act.
 

Uses of IConcept in gov.nasa.arc.brahms.vm.api.common
 

Subinterfaces of IConcept in gov.nasa.arc.brahms.vm.api.common
 interface IActiveClass
          An ActiveClass is a generic concept for the class like concepts that specify the behavior their instances will be capable of.
 interface IActiveConcept
          An ActiveConcept is a generic concept that marks concepts as specifying behavioral constructs to allow active instances to reason and perform activities.
 interface IActiveInstance
          An ActiveInstance is a generic concept that indicates that the instance can have behavior.
 interface IAgent
          An agent in Brahms is the most central construct in a Brahms model.
 interface IArea
          An area represents a geographical location and is used to create a geographical representation for use in the model.
 interface IAreaDef
          An area definition is used for defining area constructs used for representing geographical information in a model.
 interface IClass
          The concept of a 'class' in Brahms is similar to the concept of a template or class in object-oriented programming.
 interface IConceptualClass
          A conceptual object class defines a type of conceptual objects used in a model.
 interface IConceptualConcept
          A ConceptualConcept is a generic concept to indicatate the concepts that maintain information on a conceptual level.
 interface IConceptualObject
          A conceptual object is used to allow for a user to track things that exist as concepts in people's minds, like the concept of an order.
 interface ICurrent
          Current references the current agent executing an activity.
 interface IGeographyConcept
          A GeographyConcept is a generic concept to identify the concepts that make up the geography of a Brahms model.
 interface IGroup
          The concept of a "group" in Brahms is similar to the concept of a template or class in object-oriented programming.
 interface IObject
          An 'object' in Brahms is the second most central element in a Brahms model.
 interface IPath
          A path connects two areas together and represents a route that can be taken by an agent or object to travel from one area to another.
 

Methods in gov.nasa.arc.brahms.vm.api.common that return IConcept
 IConcept IActiveInstance.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves an IConcept value for an attribute of a concept from a belief in the belief state
 IConcept IActiveInstance.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from a belief in the belief state
 IConcept IActiveInstance.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from a belief in the belief state
 IConcept IAttributeTuple.getConceptRhsValue()
          Returns the right hand side value of the tuple, specifying the value for the left hand side attribute of the left hand side concept.
 IConcept IVariable.getConceptValue()
          Returns the bound value of the variable.
 IConcept IParameter.getConceptValue()
          Returns the concept value, the value of a parameter can potentially be a class.
 IConcept ITuple.getLhsConcept()
          Returns the left hand side concept about which a state is defined.
 IConcept IRelation.getOwner()
          Returns the owner of the relation, the concept for which the relation is specified.
 IConcept IAttribute.getOwner()
          Returns the owner of the attribute, the concept for which the attribute is specified.
 IConcept IRelationTuple.getRhsConcept()
          Returns the right hand side concept that is related to the left hand side concept through the IRelation specified by this tuple.
 

Methods in gov.nasa.arc.brahms.vm.api.common that return types with arguments of type IConcept
 java.util.List<IConcept> IActiveInstance.getBeliefRelationConcepts(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the beliefs in the current belief state.
 java.util.List<IConcept> IActiveInstance.removeAllBeliefRelationValues(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Removes any existing concepts as values of a named relation for a concept by retracting beliefs from the belief state.
 

Methods in gov.nasa.arc.brahms.vm.api.common with parameters of type IConcept
 void IActiveInstance.addBeliefRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept rhsConcept, IContext ctx)
          Adds a concept as a value of a named relation for a concept by asserting a new belief into the belief state.
 void IVariable.addValue(IConcept value)
          Adds the specified value to the variable's binding.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, boolean value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, byte value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, char value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, double value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, float value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, IConcept value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, int value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, boolean value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, byte value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, char value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, double value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, float value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IConcept value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, int value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IUnknown value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, long value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.Object value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.io.Serializable value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, short value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.String value, boolean symbol)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, IUnknown value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, long value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, java.lang.Object value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java object.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, java.io.Serializable value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, short value)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, int relop, java.lang.String value, boolean symbol)
          Creates a new IBelief of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, boolean value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, byte value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, char value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, double value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, float value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IConcept value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, int value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IUnknown value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, long value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.Object value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.io.Serializable value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, short value)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
static IBelief BeliefFactory.createBelief(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.String value, boolean symbol)
          Creates a new IBelief of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
static IBelief BeliefFactory.createBelief(IConcept lhsConcept, IRelation relation, IConcept rhsConcept)
          Creates a new IBelief of the form concept relation concept.
static IBelief BeliefFactory.createBelief(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int truthValue)
          Creates a new IBelief of the form concept relation concept.
static IBelief BeliefFactory.createBelief(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept)
          Creates a new IBelief of the form concept relation concept.
static IBelief BeliefFactory.createBelief(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int truthValue)
          Creates a new IBelief of the form concept relation concept.
static IBelief[] BeliefFactory.createBeliefs(IConcept concept, IAttribute attribute, int relop, java.util.Map collection)
          Creates new IBelief(s) of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, boolean value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, byte value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, char value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, double value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, float value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, IConcept value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, int value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, boolean value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, byte value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, char value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, double value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, float value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IConcept value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, int value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IUnknown value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, long value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.Object value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.io.Serializable value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, short value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.String value, boolean symbol)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, IUnknown value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, long value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, java.lang.Object value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, java.io.Serializable value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, short value)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, int relop, java.lang.String value, boolean symbol)
          Creates a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, boolean value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, byte value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, char value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, double value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, float value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IConcept value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, int value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IUnknown value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, long value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.Object value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.io.Serializable value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, short value)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
static IFact FactFactory.createFact(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.String value, boolean symbol)
          Creates a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
static IFact FactFactory.createFact(IConcept lhsConcept, IRelation relation, IConcept rhsConcept)
          Creates a new IFact of the form concept relation concept.
static IFact FactFactory.createFact(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int truthValue)
          Creates a new IFact of the form concept relation concept.
static IFact FactFactory.createFact(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept)
          Creates a new IFact of the form concept relation concept.
static IFact FactFactory.createFact(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int truthValue)
          Creates a new IFact of the form concept relation concept.
static IFact[] FactFactory.createFacts(IConcept concept, IAttribute attribute, int relop, java.util.Map collection)
          Creates new IFact(s) of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, boolean value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, byte value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, char value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, double value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, float value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IConcept value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, boolean value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, byte value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, char value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, double value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, float value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, IConcept value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, int value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, int value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, IUnknown value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, long value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, java.lang.Object value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, java.io.Serializable value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, short value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, java.lang.String value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IUnknown value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, long value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.Object value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.io.Serializable value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, short value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.String value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, boolean value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, byte value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, char value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, double value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, float value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, IConcept value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, int value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, IUnknown value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, long value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, java.lang.Object value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, java.io.Serializable value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, short value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, java.lang.String value, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int truthValue, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBelief(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int truthValue, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 boolean IActiveInstance.getBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a boolean value for an attribute of a concept from a belief in the belief state
 boolean IActiveInstance.getBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a boolean value for a collection attribute of a concept at a given integer index from a belief in the belief state
 boolean IActiveInstance.getBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a boolean value for a collection attribute of a concept at a given String key from a belief in the belief state
 byte IActiveInstance.getBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a byte value for an attribute of a concept from the active instance's belief state
 byte IActiveInstance.getBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a byte value for a collection attribute of a concept at a given integer index from a belief in the belief state
 byte IActiveInstance.getBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a byte value for a collection attribute of a concept at a given String key from a belief in the belief state
 char IActiveInstance.getBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a char value for an attribute of a concept from the active instance's belief state
 char IActiveInstance.getBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a char value for a collection attribute of a concept at a given integer index from a belief in the belief state
 char IActiveInstance.getBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a char value for a collection attribute of a concept at a given String key from a belief in the belief state
 IConcept IActiveInstance.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves an IConcept value for an attribute of a concept from a belief in the belief state
 IConcept IActiveInstance.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from a belief in the belief state
 IConcept IActiveInstance.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from a belief in the belief state
 double IActiveInstance.getBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a double value for an attribute of a concept from a belief in the belief state
 double IActiveInstance.getBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a double value for a collection attribute of a concept at a given integer index from a belief in the belief state
 double IActiveInstance.getBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a double value for a collection attribute of a concept at a given String key from a belief in the belief state
 float IActiveInstance.getBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a float value for an attribute of a concept from the active instance's belief state
 float IActiveInstance.getBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a float value for a collection attribute of a concept at a given integer index from a belief in the belief state
 float IActiveInstance.getBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a float value for a collection attribute of a concept at a given String key from a belief in the belief state
 int IActiveInstance.getBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves an int value for an attribute of a concept from the active instance's belief state
 int IActiveInstance.getBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves an int value for a collection attribute of a concept at a given integer index from a belief in the belief state
 int IActiveInstance.getBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves an int value for a collection attribute of a concept at a given String key from a belief in the belief state
 java.io.Serializable IActiveInstance.getBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a Serializable value for an attribute of a concept from a belief in the belief state
 java.io.Serializable IActiveInstance.getBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a Serializable value for a collection attribute of a concept at a given integer index from a belief in the belief state
 java.io.Serializable IActiveInstance.getBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a Serializable value for a collection attribute of a concept at a given String key from a belief in the belief state
 long IActiveInstance.getBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a long value for an attribute of a concept from a belief in the belief state
 long IActiveInstance.getBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a long value for a collection attribute of a concept at a given integer index from a belief in the belief state
 long IActiveInstance.getBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a long value for a collection attribute of a concept at a given String key from a belief in the belief state
 java.util.Map<java.lang.Object,java.lang.Object> IActiveInstance.getBeliefAttributeMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown, IContext ctx)
          Returns a Map representing the values for a map attribute of a concept from beliefs in the belief state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
 short IActiveInstance.getBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a short value for an attribute of a concept from the active instance's belief state
 short IActiveInstance.getBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a short value for a collection attribute of a concept at a given integer index from a belief in the belief state
 short IActiveInstance.getBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a short value for a collection attribute of a concept at a given String key from a belief in the belief state
 java.util.SortedMap<java.lang.Object,java.lang.Object> IActiveInstance.getBeliefAttributeSortedMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown, IContext ctx)
          Returns a sorted Map representing the values for a map attribute of a concept from beliefs in the belief state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
 java.lang.String IActiveInstance.getBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves a String value for an attribute of a concept from a belief in the belief state The attribute's Brahms type may be either string or symbol.
 java.lang.String IActiveInstance.getBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves a String value for a collection attribute of a concept at a given integer index from a belief in the belief state The Brahms type of the value may be either string or symbol.
 java.lang.String IActiveInstance.getBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves a String value for a collection attribute of a concept at a given String key from a belief in the belief state The Brahms type of the value may be either string or symbol.
 java.lang.Object IActiveInstance.getBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Retrieves the value for an attribute of a concept from a belief in the belief state Returns null if there is no corresponding belief in the belief state.
 java.lang.Object IActiveInstance.getBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Retrieves the value for a collection attribute of a concept at a given integer index from a belief in the belief state Returns null if there is no corresponding belief in the belief state.
 java.lang.Object IActiveInstance.getBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Retrieves the value for a collection attribute of a concept at a given String key from a belief in the belief state Returns null if there is no corresponding belief in the belief state.
 IBelief IActiveInstance.getBeliefForIndex(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 IBelief IActiveInstance.getBeliefForIndex(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, IContext ctx)
          Find the belief using the specified parameters and return the belief if found, null if the belief was not found.
 java.util.List<IConcept> IActiveInstance.getBeliefRelationConcepts(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the beliefs in the current belief state.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side regardless of their relational operator or value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, boolean value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, byte value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, char value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, double value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, float value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IConcept value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side and that use the specified relational operator.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, int value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IUnknown value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, long value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.Object value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.io.Serializable value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, short value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.String value, IContext ctx)
          Returns a list of all the beliefs that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IRelation relation, IContext ctx)
          Returns a list of all the beliefs that have the specified left hand side concept and relation regardless of their right hand side concept.
 java.util.Enumeration IActiveInstance.getBeliefs(IConcept lhsConcept, IRelation relation, int truthvalue, IContext ctx)
          Returns a list of all the beliefs that have the specified left hand side concept, relation and truth value regardless of their right hand side concept.
 java.util.Enumeration IActiveInstance.getBeliefs(IRelation relation, IConcept rhsConcept, int truthvalue, IContext ctx)
          Returns a list of all the beliefs that have the specified relation and right hand side concept, and truth value regardless of their left hand side concept.
 java.lang.Object BrahmsGroupDescriptor.getValue(IAgent source, IConcept lhsConcept, IAttribute lhsAttribute, IContext brahmsCtx)
          Returns the value for the attribute of the specified agent.
 java.lang.Object BrahmsGroupDescriptor.getValue(IAgent source, IConcept lhsConcept, IRelation rel, IContext brahmsCtx)
          Returns the values for the relation of the specified agent.
 java.lang.Object BrahmsClassDescriptor.getValue(IObject source, IConcept lhsConcept, IAttribute lhsAttribute, IContext brahmsCtx)
          Returns the value for the attribute of the specified object.
 java.lang.Object BrahmsClassDescriptor.getValue(IObject source, IConcept lhsConcept, IRelation rel, IContext brahmsCtx)
          Returns the values for the relation of the specified object.
 boolean IActiveInstance.hasBeliefAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown, IContext ctx)
          Tests whether a concept has any value for a named attribute based on the beliefs in the belief state.
 boolean IActiveInstance.hasBeliefAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, int index, boolean includeUnknown, IContext ctx)
          Tests whether a concept has any value for a named collection attribute at a given integer index based on the beliefs in the belief state.
 boolean IActiveInstance.hasBeliefAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean includeUnknown, IContext ctx)
          Tests whether a concept has any value for a named collection attribute at a given String key based on the beliefs in the belief state.
 boolean IActiveInstance.hasBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value, IContext ctx)
          Tests whether a concept has a specified value for a named attribute based on the beliefs in the belief state.
 boolean IActiveInstance.hasBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value, IContext ctx)
          Tests whether a concept has a specified value for a named attribute based on the beliefs in the belief state.
 boolean IActiveInstance.hasBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value, IContext ctx)
          Tests whether a concept has a specified value for a named attribute based on the beliefs in the belief state.
 boolean IActiveInstance.hasBeliefRelationAnyValue(IConcept lhsConcept, java.lang.String relationName, boolean includeUnknown, IContext ctx)
          Tests whether there are any true beliefs for a given concept and named relation in the current belief state.
 boolean IActiveInstance.hasBeliefRelationValue(IConcept lhsConcept, java.lang.String relationName, java.lang.Object value, IContext ctx)
          Tests whether a concept is related to a value by a named relation by inspecting the beliefs in the current belief state.
 java.util.List<IConcept> IActiveInstance.removeAllBeliefRelationValues(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Removes any existing concepts as values of a named relation for a concept by retracting beliefs from the belief state.
 void IActiveInstance.removeBeliefRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept rhsConcept, IContext ctx)
          Removes a concept as a value of a named relation for a concept by retracting the corresponding belief from the belief state.
 void IActiveInstance.setBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, boolean value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified boolean value for a named attribute
 void IActiveInstance.setBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index, boolean value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified boolean value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified boolean value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, byte value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified byte value for a named attribute
 void IActiveInstance.setBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index, byte value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified byte value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, byte value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified byte value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, char value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified char value for a named attribute
 void IActiveInstance.setBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index, char value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified char value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, char value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified char value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, IConcept value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified IConcept value for a named attribute
 void IActiveInstance.setBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index, IConcept value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified IConcept value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IConcept value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified IConcept value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, double value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified double value for a named attribute
 void IActiveInstance.setBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index, double value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified double value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, double value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified double value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, float value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified float value for a named attribute
 void IActiveInstance.setBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index, float value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified float value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, float value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified float value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified int value for a named attribute
 void IActiveInstance.setBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index, int value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified int value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, int value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified int value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified Java Object value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.io.Serializable value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified Java Serializable value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified Java Object value for a named attribute
 void IActiveInstance.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.io.Serializable value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified Java Serializable value for a named attribute
 void IActiveInstance.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified Java Object value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.io.Serializable value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified Java Serializable value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index, long value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified long value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, long value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified long value for a named attribute
 void IActiveInstance.setBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, long value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified long value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index, short value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified short value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, short value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified short value for a named attribute
 void IActiveInstance.setBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, short value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified short value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified string value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified string value for a named attribute
 void IActiveInstance.setBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified string value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified symbol value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified symbol value for a named attribute
 void IActiveInstance.setBeliefAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has a specified symbol value for a named collection attribute at a String key
 void IActiveInstance.setBeliefAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has the unknown value for a named attribute
 void IActiveInstance.setBeliefAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has the unknown value for a named collection attribute at an int index
 void IActiveInstance.setBeliefAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Creates and asserts a new belief in the belief state representing that an IConcept has the unknown value for a named collection attribute at a String key
 void IActiveInstance.setBeliefRelationUnknown(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Removes any existing concepts as values of a named relation for a concept by giving the relation a value of unknown.
 void BrahmsGroupDescriptor.setValue(IAgent destination, IConcept lhsConcept, IAttribute lhsAttribute, java.lang.Object value, IContext brahmsCtx)
          Sets the value for the attribute of the specified agent.
 void BrahmsGroupDescriptor.setValue(IAgent destination, IConcept lhsConcept, IRelation rel, java.lang.Object value, IContext brahmsCtx)
          Sets the value for the relation of the specified agent.
 void IVariable.setValue(IConcept value)
          Binds the variable to the specified value.
 void BrahmsClassDescriptor.setValue(IObject destination, IConcept lhsConcept, IAttribute lhsAttribute, java.lang.Object value, IContext brahmsCtx)
          Sets the value for the attribute of the specified object.
 void BrahmsClassDescriptor.setValue(IObject destination, IConcept lhsConcept, IRelation rel, java.lang.Object value, IContext brahmsCtx)
          Sets the value for the relation of the specified object.
 

Uses of IConcept in gov.nasa.arc.brahms.vm.api.components
 

Methods in gov.nasa.arc.brahms.vm.api.components that return IConcept
 IConcept IWorldState.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an IConcept value for an attribute of a concept from a fact in the world state
 IConcept IWorldState.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from a fact in the world state
 IConcept IWorldState.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from a fact in the world state
 

Methods in gov.nasa.arc.brahms.vm.api.components that return types with arguments of type IConcept
 java.util.List<IConcept> IWorldState.getFactRelationConcepts(IConcept lhsConcept, java.lang.String relationName)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the facts in the current world state.
 java.util.List<IConcept> IWorldState.removeAllFactRelationValues(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Removes any existing concepts as values of a named relation for a concept by retracting facts from the world state.
 

Methods in gov.nasa.arc.brahms.vm.api.components with parameters of type IConcept
 void IWorldState.addFactRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept rhsConcept, IContext ctx)
          Adds a concept as a value of a named relation for a concept by asserting a new fact into the world state.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, boolean value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, byte value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, char value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, double value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, float value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IConcept value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, int value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, boolean value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, byte value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, char value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, double value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, float value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, IConcept value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, int value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, IUnknown value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, long value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, java.lang.Object value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, java.io.Serializable value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, short value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, java.lang.String value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IUnknown value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, long value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.Object value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.io.Serializable value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, short value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.String value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, boolean value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, byte value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, char value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, double value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, float value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, IConcept value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, int value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, IUnknown value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, long value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, java.lang.Object value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, java.io.Serializable value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, short value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, java.lang.String value)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int truthValue)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFact(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int truthValue)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 boolean IWorldState.getFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a boolean value for an attribute of a concept from a fact in the world state
 boolean IWorldState.getFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a boolean value for a collection attribute of a concept at a given integer index from a fact in the world state
 boolean IWorldState.getFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a boolean value for a collection attribute of a concept at a given String key from a fact in the world state
 byte IWorldState.getFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a byte value for an attribute of a concept from a fact in the world state
 byte IWorldState.getFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a byte value for a collection attribute of a concept at a given integer index from a fact in the world state
 byte IWorldState.getFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a byte value for a collection attribute of a concept at a given String key from a fact in the world state
 char IWorldState.getFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a char value for an attribute of a concept from a fact in the world state
 char IWorldState.getFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a char value for a collection attribute of a concept at a given integer index from a fact in the world state
 char IWorldState.getFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a char value for a collection attribute of a concept at a given String key from a fact in the world state
 IConcept IWorldState.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an IConcept value for an attribute of a concept from a fact in the world state
 IConcept IWorldState.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from a fact in the world state
 IConcept IWorldState.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from a fact in the world state
 double IWorldState.getFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a double value for an attribute of a concept from a fact in the world state
 double IWorldState.getFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a double value for a collection attribute of a concept at a given integer index from a fact in the world state
 double IWorldState.getFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a double value for a collection attribute of a concept at a given String key from a fact in the world state
 float IWorldState.getFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a float value for an attribute of a concept from a fact in the world state
 float IWorldState.getFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a float value for a collection attribute of a concept at a given integer index from a fact in the world state
 float IWorldState.getFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a float value for a collection attribute of a concept at a given String key from a fact in the world state
 int IWorldState.getFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an int value for an attribute of a concept from a fact in the world state
 int IWorldState.getFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an int value for a collection attribute of a concept at a given integer index from a fact in the world state
 int IWorldState.getFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an int value for a collection attribute of a concept at a given String key from a fact in the world state
 java.io.Serializable IWorldState.getFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a Java Serializable value for an attribute of a concept from a fact in the world state
 java.io.Serializable IWorldState.getFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a Serializable value for a collection attribute of a concept at a given integer index from a fact in the world state
 java.io.Serializable IWorldState.getFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a Serializable value for a collection attribute of a concept at a given String key from a fact in the world state
 long IWorldState.getFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a long value for an attribute of a concept from a fact in the world state
 long IWorldState.getFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a long value for a collection attribute of a concept at a given integer index from a fact in the world state
 long IWorldState.getFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a long value for a collection attribute of a concept at a given String key from a fact in the world state
 java.util.Map<java.lang.Object,java.lang.Object> IWorldState.getFactAttributeMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Returns a Map representing the values for a map attribute of a concept from facts in the world state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
 short IWorldState.getFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a short value for an attribute of a concept from a fact in the world state
 short IWorldState.getFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a short value for a collection attribute of a concept at a given integer index from a fact in the world state
 short IWorldState.getFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a short value for a collection attribute of a concept at a given String key from a fact in the world state
 java.util.SortedMap<java.lang.Object,java.lang.Object> IWorldState.getFactAttributeSortedMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Returns a sorted Map representing the values for a map attribute of a concept from facts in the world state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
 java.lang.String IWorldState.getFactAttributeString(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a String value for an attribute of a concept from a fact in the world state The attribute's Brahms type may be either string or symbol.
 java.lang.String IWorldState.getFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a String value for a collection attribute of a concept at a given integer index from a fact in the world state The Brahms type of the value may be either string or symbol.
 java.lang.String IWorldState.getFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a String value for a collection attribute of a concept at a given String key from a fact in the world state The Brahms type of the value may be either string or symbol.
 java.lang.Object IWorldState.getFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves the value for an attribute of a concept from a fact in the world state Returns null if there is no corresponding fact in the world state.
 java.lang.Object IWorldState.getFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves the value for a collection attribute of a concept at a given integer index from a fact in the world state Returns null if there is no corresponding fact in the world state.
 java.lang.Object IWorldState.getFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves the value for a collection attribute of a concept at a given String key from a fact in the world state Returns null if there is no corresponding fact in the world state.
 IFact IWorldState.getFactForIndex(IConcept lhsConcept, IAttribute lhsAttribute, int lhsCollectionIndex, int relop, IContext ctx)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 IFact IWorldState.getFactForIndex(IConcept lhsConcept, IAttribute lhsAttribute, java.lang.String lhsCollectionIndex, int relop, IContext ctx)
          Find the fact using the specified parameters and return the fact if found, null if the fact was not found.
 java.util.List<IConcept> IWorldState.getFactRelationConcepts(IConcept lhsConcept, java.lang.String relationName)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the facts in the current world state.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side regardless of their relational operator or value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side and that use the specified relational operator.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, boolean value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, byte value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, char value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, double value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, float value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IConcept value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, int value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, IUnknown value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, long value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.Object value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.io.Serializable value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, short value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IAttribute lhsAttribute, int relop, java.lang.String value)
          Returns a list of all the facts that have the specified concept and attribute on their left hand side, that use the specified relational operator and have the specified rhs value.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IRelation relation)
          Returns a list of all the facts that have the specified left hand side concept and relation regardless of their right hand side concept.
 java.util.Enumeration IWorldState.getFacts(IConcept lhsConcept, IRelation relation, int truthValue)
          Returns a list of all the facts that have the specified left hand side concept, relation and truth value regardless of their right hand side concept.
 java.util.Enumeration IWorldState.getFacts(IRelation relation, IConcept rhsConcept, int truthValue)
          Returns a list of all the facts that have the specified relation and right hand side concept, and truth value regardless of their left hand side concept.
 boolean IWorldState.hasFactAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Tests whether a concept has any value for a named attribute based on the facts in the world state.
 boolean IWorldState.hasFactAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, int index, boolean includeUnknown)
          Tests whether a concept has any value for a named collection attribute at a given integer index based on the facts in the world state.
 boolean IWorldState.hasFactAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean includeUnknown)
          Tests whether a concept has any value for a named collection attribute at a given String key based on the facts in the world state.
 boolean IWorldState.hasFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value)
          Tests whether a concept has a specified value for a named collection attribute at an int index based on the facts in the world state.
 boolean IWorldState.hasFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value)
          Tests whether a concept has a specified value for a named attribute based on the facts in the world state.
 boolean IWorldState.hasFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value)
          Tests whether a concept has a specified value for a named collection attribute at a String key based on the facts in the world state.
 boolean IWorldState.hasFactRelationAnyValue(IConcept lhsConcept, java.lang.String relationName, boolean includeUnknown)
          Tests whether there are any true facts for a given concept and named relation in the current world state.
 boolean IWorldState.hasFactRelationValue(IConcept lhsConcept, java.lang.String relationName, java.lang.Object value)
          Tests whether a concept is related to a value by a named relation by inspecting the facts in the current world state.
 java.util.List<IConcept> IWorldState.removeAllFactRelationValues(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Removes any existing concepts as values of a named relation for a concept by retracting facts from the world state.
 void IWorldState.removeFactRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept rhsConcept, IContext ctx)
          Removes a concept as a value of a named relation for a concept by retracting the corresponding fact from the world state.
 void IWorldState.setFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, boolean value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified boolean value for a named attribute
 void IWorldState.setFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index, boolean value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified boolean value for a named collection attribute at an int index
 void IWorldState.setFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified boolean value for a named collection attribute at a String key
 void IWorldState.setFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, byte value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified byte value for a named attribute
 void IWorldState.setFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index, byte value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified byte value for a named collection attribute at an int index
 void IWorldState.setFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, byte value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified byte value for a named collection attribute at a String key
 void IWorldState.setFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, char value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified char value for a named attribute
 void IWorldState.setFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index, char value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified char value for a named collection attribute at an int index
 void IWorldState.setFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, char value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified char value for a named collection attribute at a String key
 void IWorldState.setFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, IConcept value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified IConcept value for a named attribute
 void IWorldState.setFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index, IConcept value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified IConcept value for a named collection attribute at an int index
 void IWorldState.setFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IConcept value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified IConcept value for a named collection attribute at a String key
 void IWorldState.setFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, double value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified double value for a named attribute
 void IWorldState.setFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index, double value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified double value for a named collection attribute at an int index
 void IWorldState.setFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, double value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified double value for a named collection attribute at a String key
 void IWorldState.setFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, float value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified float value for a named attribute
 void IWorldState.setFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index, float value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified float value for a named collection attribute at an int index
 void IWorldState.setFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, float value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified float value for a named collection attribute at a String key
 void IWorldState.setFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified int value for a named attribute
 void IWorldState.setFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index, int value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified int value for a named collection attribute at an int index
 void IWorldState.setFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, int value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified int value for a named collection attribute at a String key
 void IWorldState.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Object value for a named collection attribute at an int index
 void IWorldState.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.io.Serializable value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Serializable value for a named collection attribute at an int index
 void IWorldState.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Object value for a named attribute
 void IWorldState.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.io.Serializable value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Serializable value for a named attribute
 void IWorldState.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Object value for a named collection attribute at a String key
 void IWorldState.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.io.Serializable value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Serializable value for a named collection attribute at a String key
 void IWorldState.setFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index, long value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified long value for a named collection attribute at an int index
 void IWorldState.setFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, long value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified long value for a named attribute
 void IWorldState.setFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, long value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified long value for a named collection attribute at a String key
 void IWorldState.setFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index, short value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified short value for a named collection attribute at an int index
 void IWorldState.setFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, short value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified short value for a named attribute
 void IWorldState.setFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, short value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified short value for a named collection attribute at a String key
 void IWorldState.setFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified string value for a named collection attribute at an int index
 void IWorldState.setFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified string value for a named attribute
 void IWorldState.setFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified string value for a named collection attribute at a String key
 void IWorldState.setFactAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified symbol value for a named collection attribute at an int index
 void IWorldState.setFactAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified symbol value for a named attribute
 void IWorldState.setFactAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified symbol value for a named collection attribute at a String key
 void IWorldState.setFactAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has the unknown value for a named attribute
 void IWorldState.setFactAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, int index, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has the unknown value for a named collection attribute at an int index
 void IWorldState.setFactAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IContext ctx)
          Creates and asserts a new fact in the world state representing that an IConcept has the unknown value for a named collection attribute at a String key
 void IWorldState.setFactRelationUnknown(IConcept lhsConcept, java.lang.String relationName, IContext ctx)
          Removes any existing concepts as values of a named relation for a concept by giving the relation a value of unknown.
 

Uses of IConcept in gov.nasa.arc.brahms.vm.api.jac
 

Methods in gov.nasa.arc.brahms.vm.api.jac that return IConcept
protected  IConcept AbstractExternalActivity.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an IConcept value for an attribute of a concept from the activity performer's belief state
protected  IConcept AbstractExternalActivity.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  IConcept AbstractExternalActivity.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  IConcept AbstractExternalActivity.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an IConcept value for an attribute of a concept from a fact in the world state
protected  IConcept AbstractExternalActivity.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  IConcept AbstractExternalActivity.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from a fact in the world state
protected  IConcept AbstractExternalActivity.getParameterConcept(java.lang.String name)
          Returns the concept value of the parameter with the specified name defined for the external activity.
 

Methods in gov.nasa.arc.brahms.vm.api.jac that return types with arguments of type IConcept
protected  java.util.List<IConcept> AbstractExternalActivity.getBeliefRelationConcepts(IConcept lhsConcept, java.lang.String relationName)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the beliefs in the activity performer's belief state.
protected  java.util.List<IConcept> AbstractExternalActivity.getFactRelationConcepts(IConcept lhsConcept, java.lang.String relationName)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the facts in the current world state.
protected  java.util.List<IConcept> AbstractExternalActivity.removeAllBeliefRelationValues(IConcept lhsConcept, java.lang.String relationName)
          Removes any existing concepts as values of a named relation for a concept by retracting beliefs from the activity performer's belief state.
protected  java.util.List<IConcept> AbstractExternalActivity.removeAllFactRelationValues(IConcept lhsConcept, java.lang.String relationName)
          Removes any existing concepts as values of a named relation for a concept by retracting facts from the world state.
 

Methods in gov.nasa.arc.brahms.vm.api.jac with parameters of type IConcept
protected  void AbstractExternalActivity.addBeliefRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept value)
          Adds a concept as a value of a named relation for a concept by asserting a new belief into the activity performer's belief state.
protected  void AbstractExternalActivity.addFactRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept value)
          Adds a concept as a value of a named relation for a concept by asserting a new fact into the world state.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, boolean value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, byte value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, char value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, double value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, float value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, IConcept value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, boolean value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, byte value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, char value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, double value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, float value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IConcept value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, int value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, int value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IUnknown value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, long value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.Object value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.io.Serializable value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, short value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.String value, boolean symbol, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, IUnknown value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, long value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, java.util.Map collection, int beliefcertainty, int factcertainty)
          Concludes new IFact(s) and/or IBelief(s) of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, java.lang.Object value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, java.io.Serializable value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, short value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, int relop, java.lang.String value, boolean symbol, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, boolean value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, byte value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, char value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, double value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, float value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IConcept value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, int value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IUnknown value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, long value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.Object value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.io.Serializable value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, short value, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IStatement[] AbstractExternalActivity.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.String value, boolean symbol, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IStatement[] AbstractExternalActivity.conclude(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept relation concept.
 IStatement[] AbstractExternalActivity.conclude(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int truthValue, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept relation concept with the specified truth value.
 IStatement[] AbstractExternalActivity.conclude(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept relation concept.
 IStatement[] AbstractExternalActivity.conclude(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int truthValue, int beliefcertainty, int factcertainty)
          Concludes a new IBelief and/or IFact of the form concept relation concept with the specified truth value.
protected  boolean AbstractExternalActivity.getBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a boolean value for an attribute of a concept from the activity performer's belief state
protected  boolean AbstractExternalActivity.getBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a boolean value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  boolean AbstractExternalActivity.getBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a boolean value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  byte AbstractExternalActivity.getBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a byte value for an attribute of a concept from the activity performer's belief state
protected  byte AbstractExternalActivity.getBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a byte value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  byte AbstractExternalActivity.getBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a byte value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  char AbstractExternalActivity.getBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a char value for an attribute of a concept from the activity performer's belief state
protected  char AbstractExternalActivity.getBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a char value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  char AbstractExternalActivity.getBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves achar value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  IConcept AbstractExternalActivity.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an IConcept value for an attribute of a concept from the activity performer's belief state
protected  IConcept AbstractExternalActivity.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  IConcept AbstractExternalActivity.getBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  double AbstractExternalActivity.getBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a double value for an attribute of a concept from the activity performer's belief state
protected  double AbstractExternalActivity.getBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a double value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  double AbstractExternalActivity.getBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a double value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  float AbstractExternalActivity.getBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a float value for an attribute of a concept from the activity performer's belief state
protected  float AbstractExternalActivity.getBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a float value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  float AbstractExternalActivity.getBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a float value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  int AbstractExternalActivity.getBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an int value for an attribute of a concept from the activity performer's belief state
protected  int AbstractExternalActivity.getBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an int value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  int AbstractExternalActivity.getBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an int value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  java.io.Serializable AbstractExternalActivity.getBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a Serializable value for an attribute of a concept from the activity performer's belief state
protected  java.io.Serializable AbstractExternalActivity.getBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a Serializable value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  java.io.Serializable AbstractExternalActivity.getBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a Serializable value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  long AbstractExternalActivity.getBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a long value for an attribute of a concept from the activity performer's belief state
protected  long AbstractExternalActivity.getBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a long value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  long AbstractExternalActivity.getBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a long value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  java.util.Map<java.lang.Object,java.lang.Object> AbstractExternalActivity.getBeliefAttributeMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Returns a Map representing the values for a map attribute of a concept from beliefs in the belief state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
protected  short AbstractExternalActivity.getBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a short value for an attribute of a concept from the activity performer's belief state
protected  short AbstractExternalActivity.getBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a short value for a collection attribute of a concept at a given integer index from the activity performer's belief state
protected  short AbstractExternalActivity.getBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a short value for a collection attribute of a concept at a given String key from the activity performer's belief state
protected  java.util.SortedMap<java.lang.Object,java.lang.Object> AbstractExternalActivity.getBeliefAttributeSortedMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Returns a sorted Map representing the values for a map attribute of a concept from beliefs in the belief state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
protected  java.lang.String AbstractExternalActivity.getBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a String value for an attribute of a concept from the activity performer's belief state The attribute's Brahms type may be either string or symbol.
protected  java.lang.String AbstractExternalActivity.getBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a String value for a collection attribute of a concept at a given integer index from the activity performer's belief state The Brahms type of the value may be either string or symbol.
protected  java.lang.String AbstractExternalActivity.getBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a String value for a collection attribute of a concept at a given String key from the activity performer's belief state The Brahms type of the value may be either string or symbol.
protected  java.lang.Object AbstractExternalActivity.getBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves the value for an attribute of a concept from the activity performer's belief state Returns null if there is no corresponding belief in the belief state.
protected  java.lang.Object AbstractExternalActivity.getBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves the value for a collection attribute of a concept at a given integer index from the activity performer's belief state Returns null if there is no corresponding belief in the belief state.
protected  java.lang.Object AbstractExternalActivity.getBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves the value for a collection attribute of a concept at a given String key from the activity performer's belief state Returns null if there is no corresponding belief in the belief state.
protected  java.util.List<IConcept> AbstractExternalActivity.getBeliefRelationConcepts(IConcept lhsConcept, java.lang.String relationName)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the beliefs in the activity performer's belief state.
protected  boolean AbstractExternalActivity.getFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a boolean value for an attribute of a concept from a fact in the world state
protected  boolean AbstractExternalActivity.getFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a boolean value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  boolean AbstractExternalActivity.getFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a boolean value for a collection attribute of a concept at a given String key from a fact in the world state
protected  byte AbstractExternalActivity.getFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a byte value for an attribute of a concept from a fact in the world state
protected  byte AbstractExternalActivity.getFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a byte value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  byte AbstractExternalActivity.getFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a byte value for a collection attribute of a concept at a given String key from a fact in the world state
protected  char AbstractExternalActivity.getFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a char value for an attribute of a concept from a fact in the world state
protected  char AbstractExternalActivity.getFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a char value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  char AbstractExternalActivity.getFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a char value for a collection attribute of a concept at a given String key from a fact in the world state
protected  IConcept AbstractExternalActivity.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an IConcept value for an attribute of a concept from a fact in the world state
protected  IConcept AbstractExternalActivity.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an IConcept value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  IConcept AbstractExternalActivity.getFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an IConcept value for a collection attribute of a concept at a given String key from a fact in the world state
protected  double AbstractExternalActivity.getFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a double value for an attribute of a concept from a fact in the world state
protected  double AbstractExternalActivity.getFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a double value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  double AbstractExternalActivity.getFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a double value for a collection attribute of a concept at a given String key from a fact in the world state
protected  float AbstractExternalActivity.getFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a float value for an attribute of a concept from a fact in the world state
protected  float AbstractExternalActivity.getFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a float value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  float AbstractExternalActivity.getFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a float value for a collection attribute of a concept at a given String key from a fact in the world state
protected  int AbstractExternalActivity.getFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves an int value for an attribute of a concept from a fact in the world state
protected  int AbstractExternalActivity.getFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves an int value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  int AbstractExternalActivity.getFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves an int value for a collection attribute of a concept at a given String key from a fact in the world state
protected  java.io.Serializable AbstractExternalActivity.getFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a Serializable value for an attribute of a concept from a fact in the world state
protected  java.io.Serializable AbstractExternalActivity.getFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a Serializable value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  java.io.Serializable AbstractExternalActivity.getFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a Serializable value for a collection attribute of a concept at a given String key from a fact in the world state
protected  long AbstractExternalActivity.getFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a long value for an attribute of a concept from a fact in the world state
protected  long AbstractExternalActivity.getFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a long value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  long AbstractExternalActivity.getFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a long value for a collection attribute of a concept at a given String key from a fact in the world state
protected  java.util.Map<java.lang.Object,java.lang.Object> AbstractExternalActivity.getFactAttributeMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Returns a Map representing the values for a map attribute of a concept from facts in the world state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
protected  short AbstractExternalActivity.getFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a short value for an attribute of a concept from a fact in the world state
protected  short AbstractExternalActivity.getFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a short value for a collection attribute of a concept at a given integer index from a fact in the world state
protected  short AbstractExternalActivity.getFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a short value for a collection attribute of a concept at a given String key from a fact in the world state
protected  java.util.SortedMap<java.lang.Object,java.lang.Object> AbstractExternalActivity.getFactAttributeSortedMap(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Returns a sorted Map representing the values for a map attribute of a concept from facts in the world state Entries with values of unknown are included in the returned Map if the includeUnknown parameter is true.
protected  java.lang.String AbstractExternalActivity.getFactAttributeString(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves a String value for an attribute of a concept from a fact in the world state The attribute's Brahms type may be either string or symbol.
protected  java.lang.String AbstractExternalActivity.getFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves a String value for a collection attribute of a concept at a given integer index from a fact in the world state The Brahms type of the value may be either string or symbol.
protected  java.lang.String AbstractExternalActivity.getFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves a String value for a collection attribute of a concept at a given String key from a fact in the world state The Brahms type of the value may be either string or symbol.
protected  java.lang.Object AbstractExternalActivity.getFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName)
          Retrieves the value for an attribute of a concept from a fact in the world state Returns null if there is no corresponding fact in the world state.
protected  java.lang.Object AbstractExternalActivity.getFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index)
          Retrieves the value for a collection attribute of a concept at a given integer index from a fact in the world state Returns null if there is no corresponding fact in the world state.
protected  java.lang.Object AbstractExternalActivity.getFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Retrieves the value for a collection attribute of a concept at a given String key from a fact in the world state Returns null if there is no corresponding fact in the world state.
protected  java.util.List<IConcept> AbstractExternalActivity.getFactRelationConcepts(IConcept lhsConcept, java.lang.String relationName)
          Retrieves a list of concepts that are related to a given concept by a named relation by inspecting the facts in the current world state.
protected  boolean AbstractExternalActivity.hasBeliefAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Tests whether a concept has any value for a named attribute based on the activity performer's belief state.
protected  boolean AbstractExternalActivity.hasBeliefAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, int index, boolean includeUnknown)
          Tests whether a concept has any value for a named collection attribute at a given integer index based on the activity performer's belief state.
protected  boolean AbstractExternalActivity.hasBeliefAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean includeUnknown)
          Tests whether a concept has any value for a named collection attribute at a given String key based on the activity performer's belief state.
protected  boolean AbstractExternalActivity.hasBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value)
          Tests whether a concept has a specified value for a named attribute based on the activity performer's belief state.
protected  boolean AbstractExternalActivity.hasBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value)
          Tests whether a concept has a specified value for a named attribute based on the activity performer's belief state.
protected  boolean AbstractExternalActivity.hasBeliefAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value)
          Tests whether a concept has a specified value for a named attribute based on the activity performer's belief state.
protected  boolean AbstractExternalActivity.hasBeliefRelationAnyValue(IConcept lhsConcept, java.lang.String relationName, boolean includeUnknown)
          Tests whether there are any true beliefs for a given concept and named relation in the current belief state.
protected  boolean AbstractExternalActivity.hasBeliefRelationValue(IConcept lhsConcept, java.lang.String relationName, java.lang.Object value)
          Tests whether a concept is related to a value by a named relation by inspecting the beliefs in the current belief state.
protected  boolean AbstractExternalActivity.hasFactAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, boolean includeUnknown)
          Tests whether a concept has any value for a named attribute based on the facts in the world state.
protected  boolean AbstractExternalActivity.hasFactAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, int index, boolean includeUnknown)
          Tests whether a concept has any value for a named collection attribute at a given integer index based on the facts in the world state.
protected  boolean AbstractExternalActivity.hasFactAttributeAnyValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean includeUnknown)
          Tests whether a concept has any value for a named collection attribute at a given String key based on the facts in the world state.
protected  boolean AbstractExternalActivity.hasFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value)
          Tests whether a concept has a specified value for a named attribute based on the facts in the world state.
protected  boolean AbstractExternalActivity.hasFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value)
          Tests whether a concept has a specified value for a named attribute based on the facts in the world state.
protected  boolean AbstractExternalActivity.hasFactAttributeValue(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value)
          Tests whether a concept has a specified value for a named attribute based on the facts in the world state.
protected  boolean AbstractExternalActivity.hasFactRelationAnyValue(IConcept lhsConcept, java.lang.String relationName, boolean includeUnknown)
          Tests whether there are any true facts for a given concept and named relation in the current world state.
protected  boolean AbstractExternalActivity.hasFactRelationValue(IConcept lhsConcept, java.lang.String relationName, java.lang.Object value)
          Tests whether a concept is related to a value by a named relation by inspecting the facts in the current world state.
protected  java.util.List<IConcept> AbstractExternalActivity.removeAllBeliefRelationValues(IConcept lhsConcept, java.lang.String relationName)
          Removes any existing concepts as values of a named relation for a concept by retracting beliefs from the activity performer's belief state.
protected  java.util.List<IConcept> AbstractExternalActivity.removeAllFactRelationValues(IConcept lhsConcept, java.lang.String relationName)
          Removes any existing concepts as values of a named relation for a concept by retracting facts from the world state.
protected  void AbstractExternalActivity.removeBeliefRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept value)
          Removes a concept as a value of a named relation for a concept by retracting the corresponding belief from the activity performer's belief state.
protected  void AbstractExternalActivity.removeFactRelationConcept(IConcept lhsConcept, java.lang.String relationName, IConcept value)
          Removes a concept as a value of a named relation for a concept by retracting the corresponding fact from the world state.
protected  void AbstractExternalActivity.setBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, boolean value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified boolean value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index, boolean value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified boolean value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified boolean value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, byte value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified byte value for a named attribute.
protected  void AbstractExternalActivity.setBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index, byte value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified byte value for a named collection attribute at an int index.
protected  void AbstractExternalActivity.setBeliefAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, byte value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified byte value for a named collection attribute at a String key.
protected  void AbstractExternalActivity.setBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, char value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified char value for a named attribute.
protected  void AbstractExternalActivity.setBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index, char value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified char value for a named collection attribute at an int index.
protected  void AbstractExternalActivity.setBeliefAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, char value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified char value for a named collection attribute at a String key.
protected  void AbstractExternalActivity.setBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, IConcept value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified IConcept value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index, IConcept value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified IConcept value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IConcept value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified IConcept value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, double value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified double value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index, double value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified double value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, double value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified double value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, float value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified float value for a named attribute.
protected  void AbstractExternalActivity.setBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index, float value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified float value for a named collection attribute at an int index.
protected  void AbstractExternalActivity.setBeliefAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, float value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified float value for a named collection attribute at a String key.
protected  void AbstractExternalActivity.setBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified int value for a named attribute.
protected  void AbstractExternalActivity.setBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index, int value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified int value for a named collection attribute at an int index.
protected  void AbstractExternalActivity.setBeliefAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, int value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified int value for a named collection attribute at a String key.
protected  void AbstractExternalActivity.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified Java Object value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.io.Serializable value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified Java Serializable value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified Java Object value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.io.Serializable value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified Java Serializable value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified Java Object value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.io.Serializable value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified Java Serializable value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index, long value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified long value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, long value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified long value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, long value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified long value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index, short value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified short value for a named collection attribute at an int index.
protected  void AbstractExternalActivity.setBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, short value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified short value for a named attribute.
protected  void AbstractExternalActivity.setBeliefAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, short value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified short value for a named collection attribute at a String key.
protected  void AbstractExternalActivity.setBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified string value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified string value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified string value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified symbol value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified symbol value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has a specified symbol value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has the unknown value for a named attribute
protected  void AbstractExternalActivity.setBeliefAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, int index)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has the unknown value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setBeliefAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Creates and asserts a new belief in the activity performer's belief state representing that an IConcept has the unknown value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setBeliefRelationUnknown(IConcept lhsConcept, java.lang.String relationName)
          Removes any existing concepts as values of a named relation for a concept by giving the relation a value of unknown.
protected  void AbstractExternalActivity.setFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, boolean value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified boolean value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, int index, boolean value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified boolean value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeBoolean(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, boolean value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified boolean value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, byte value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified byte value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, int index, byte value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified byte value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeByte(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, byte value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified byte value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, char value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified char value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, int index, char value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified char value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeChar(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, char value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified char value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, IConcept value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified IConcept value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, int index, IConcept value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified IConcept value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeConcept(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, IConcept value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified IConcept value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, double value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified double value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, int index, double value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified double value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeDouble(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, double value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified double value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, float value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified float value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, int index, float value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified float value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeFloat(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, float value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified float value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified int value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, int index, int value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified int value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeInt(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, int value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified int value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.Object value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Object value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, int index, java.io.Serializable value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Object value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.Object value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Object value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.io.Serializable value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Serializable value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.Object value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Object value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeJava(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.io.Serializable value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified Java Serializable value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, int index, long value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified long value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, long value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified long value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeLong(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, long value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified long value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, int index, short value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified short value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, short value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified short value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeShort(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, short value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified short value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified string value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified string value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeString(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified string value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, int index, java.lang.String value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified symbol value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified symbol value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeSymbol(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key, java.lang.String value)
          Creates and asserts a new fact in the world state representing that an IConcept has a specified symbol value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName)
          Creates and asserts a new fact in the world state representing that an IConcept has the unknown value for a named attribute
protected  void AbstractExternalActivity.setFactAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, int index)
          Creates and asserts a new fact in the world state representing that an IConcept has the unknown value for a named collection attribute at an int index
protected  void AbstractExternalActivity.setFactAttributeUnknown(IConcept lhsConcept, java.lang.String attributeName, java.lang.String key)
          Creates and asserts a new fact in the world state representing that an IConcept has the unknown value for a named collection attribute at a String key
protected  void AbstractExternalActivity.setFactRelationUnknown(IConcept lhsConcept, java.lang.String relationName)
          Removes any existing concepts as values of a named relation for a concept by giving the relation a value of unknown.
protected  void AbstractExternalActivity.setParameterConcept(java.lang.String name, IConcept value)
          Sets an output parameter of the activity to an IConcept value
 

Uses of IConcept in gov.nasa.arc.brahms.vm.api.jagt
 

Methods in gov.nasa.arc.brahms.vm.api.jagt with parameters of type IConcept
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, boolean value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, byte value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, char value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, double value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, float value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, IConcept value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, boolean value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, byte value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, char value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, double value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, float value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IConcept value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, int value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, int value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IUnknown value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, long value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.Object value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.io.Serializable value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, short value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.String value, boolean symbol, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, IUnknown value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, long value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact[] AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, java.util.Map collection, int factcertainty)
          Concludes new IFact(s) of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, java.lang.Object value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, java.io.Serializable value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, short value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, int relop, java.lang.String value, boolean symbol, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, boolean value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, byte value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, char value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, double value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, float value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IConcept value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, int value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IUnknown value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, long value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.Object value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.io.Serializable value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, short value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IFact AbstractExternalAgent.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.String value, boolean symbol, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IFact AbstractExternalAgent.conclude(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int factcertainty)
          Concludes a new IFact of the form concept relation concept.
 IFact AbstractExternalAgent.conclude(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int truthValue, int factcertainty)
          Concludes a new IFact of the form concept relation concept with the specified truth value.
 IFact AbstractExternalAgent.conclude(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int factcertainty)
          Concludes a new IFact of the form concept relation concept.
 IFact AbstractExternalAgent.conclude(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int truthValue, int factcertainty)
          Concludes a new IFact of the form concept relation concept with the specified truth value.
 

Uses of IConcept in gov.nasa.arc.brahms.vm.api.jsvc
 

Methods in gov.nasa.arc.brahms.vm.api.jsvc with parameters of type IConcept
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, boolean value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, byte value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, char value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, double value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, float value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, IConcept value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, boolean value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, byte value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, char value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, double value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, float value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IConcept value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, int value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, int value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, IUnknown value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, long value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.Object value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.io.Serializable value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, short value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int collectionIndex, int relop, java.lang.String value, boolean symbol, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, IUnknown value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, long value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact[] AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, java.util.Map collection, int factcertainty)
          Concludes new IFact(s) of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, java.lang.Object value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, java.io.Serializable value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, short value, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, int relop, java.lang.String value, boolean symbol, int factcertainty)
          Concludes a new IFact of the form concept.attribute relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, boolean value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a boolean.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, byte value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a byte.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, char value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a character.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, double value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a double.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, float value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a float.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IConcept value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an IConcept.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, int value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is an integer.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, IUnknown value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is the value 'unknown'.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, long value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a long.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.Object value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Object.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.io.Serializable value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a Java Serializable.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, short value, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a short.
 IFact AbstractExternalService.conclude(IConcept concept, IAttribute attribute, java.lang.String collectionIndex, int relop, java.lang.String value, boolean symbol, int factcertainty)
          Concludes a new IFact of the form concept.attribute(index) relop value where relop is one of EQUALS or NOT_EQUALS and the value is a String.
 IFact AbstractExternalService.conclude(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int factcertainty)
          Concludes a new IFact of the form concept relation concept.
 IFact AbstractExternalService.conclude(IConcept lhsConcept, IRelation relation, IConcept rhsConcept, int truthValue, int factcertainty)
          Concludes a new IFact of the form concept relation concept with the specified truth value.
 IFact AbstractExternalService.conclude(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int factcertainty)
          Concludes a new IFact of the form concept relation concept.
 IFact AbstractExternalService.conclude(IConcept lhsConcept, IRelation relation, IUnknown rhsConcept, int truthValue, int factcertainty)
          Concludes a new IFact of the form concept relation concept with the specified truth value.
 



Copyright © 1997-2012 All Rights Reserved.