Uses of Class
iitb.con.core.Instance

Packages that use Instance
iitb.con.core   
iitb.con.ds   
iitb.con.net   
iitb.con.query   
 

Uses of Instance in iitb.con.core
 

Subclasses of Instance in iitb.con.core
 class EntityInstance
          EntityInstance is the instantiated item of the Entity.
EntityInstance interface provides setter and getter methods for the attributes.
 class RelationInstance
          Relations are associated with the entities and instances.
RelationIntance interface provides methods to set and remove the relations among the entity instances.

The relation is created between two items, which is considered as left-item and right-item.
 

Uses of Instance in iitb.con.ds
 

Fields in iitb.con.ds declared as Instance
 Instance InstanceMetaItem.instance
          Instance object
 

Methods in iitb.con.ds that return Instance
 Instance InstanceSerializer.deSerialize(java.nio.ByteBuffer buf)
          Deserializes the given bytes as Instance
 

Methods in iitb.con.ds with parameters of type Instance
 java.nio.ByteBuffer InstanceSerializer.serialize(Instance instance)
          Serializes Instance to bytes
 

Uses of Instance in iitb.con.net
 

Methods in iitb.con.net with parameters of type Instance
 int FileConceptNet.add(Instance instance)
          Adds the instance to the concept-net.
The instance can be EntityInstance or RelationInstance
abstract  int ConceptNet.add(Instance instance)
          Adds the Instance to the concept-nets.
 int FileConceptNet.addInstance(Instance instance, short clusterId)
           
 Result FileConceptNet.remove(Instance instance)
          Removes the instance from the concept-net.
abstract  Result ConceptNet.remove(Instance instance)
          Removes the existing Instance from the concept-nets.
 Result FileConceptNet.update(Instance instance)
          Updates the instance in the concept-net.
abstract  Result ConceptNet.update(Instance instance)
          Updates the Instance to the concept-nets.
 

Uses of Instance in iitb.con.query
 

Methods in iitb.con.query that return Instance
 Instance Query.getInstance(int instanceId)
          Returns the instance for the specified instance id
 Instance ItemQuery.getInstance(int instanceId)
          Returns the instance for the specified instance id
 

Methods in iitb.con.query that return types with arguments of type Instance
 java.util.List<Instance> Query.getInstances(java.util.List<java.lang.Integer> instanceIds)
          Returns the instances for the specified instance id
 java.util.List<Instance> ItemQuery.getInstances(java.util.List<java.lang.Integer> idList)
          Returns the instances for the specified instance id
 java.util.List<Instance> Query.getInstances(java.lang.Short typeId)
          Returns all the instances for the specified Type
 java.util.List<Instance> ItemQuery.getInstances(java.lang.Short typeId)
          Returns all the instances for the specified Type
 java.util.List<Instance> Query.getInstances(java.lang.String typeName)
          Returns all the instances for the specified Type
 java.util.List<Instance> ItemQuery.getInstances(java.lang.String typeName)
          Returns all the instances for the specified Type
<K extends java.lang.Comparable<K>>
java.util.List<Instance>
Query.getInstances(java.lang.String typeName, java.lang.String attributeName, K value)
          Returns the existing Instance from the concept-nets.
The instance is retrieved based on the type with the specified attribute name and its value.
<K extends java.lang.Comparable<K>>
java.util.List<Instance>
ItemQuery.getInstances(java.lang.String typeName, java.lang.String attributeName, K value)
          Returns the existing Instance from the concept-nets.
The instance is retrieved based on the type with the specified attribute name and its value.