Uses of Class
de.deepamehta.core.model.RelatedTopicModel

Packages that use RelatedTopicModel
de.deepamehta.core   
de.deepamehta.core.impl   
de.deepamehta.core.model   
de.deepamehta.core.storage.spi   
de.deepamehta.plugins.facets.model   
de.deepamehta.storage.neo4j   
 

Uses of RelatedTopicModel in de.deepamehta.core
 

Methods in de.deepamehta.core that return RelatedTopicModel
 RelatedTopicModel RelatedTopic.getModel()
           
 

Methods in de.deepamehta.core with parameters of type RelatedTopicModel
 void DeepaMehtaObject.updateChildTopic(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
 

Method parameters in de.deepamehta.core with type arguments of type RelatedTopicModel
 void DeepaMehtaObject.updateChildTopics(List<RelatedTopicModel> newChildTopics, AssociationDefinition assocDef)
           
 

Uses of RelatedTopicModel in de.deepamehta.core.impl
 

Methods in de.deepamehta.core.impl that return RelatedTopicModel
(package private)  RelatedTopicModel StorageDecorator.fetchAssociationRelatedTopic(long assocId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
          Convenience method (checks singularity).
private  RelatedTopicModel TypeStorageImpl.fetchCardinality(long assocDefId, String cardinalityRoleTypeUri)
           
private  RelatedTopicModel TypeStorageImpl.fetchCardinalityOrThrow(long assocDefId, String cardinalityRoleTypeUri)
           
private  RelatedTopicModel ValueStorage.fetchChildTopic(long parentId, AssociationDefinitionModel assocDef)
          Fetches and returns a child topic or null if no such topic extists.
private  RelatedTopicModel TypeStorageImpl.fetchDataTypeTopic(long typeId, String typeUri, String className)
           
private  RelatedTopicModel TypeStorageImpl.fetchLabelConfigTopic(long assocDefId)
           
(package private)  RelatedTopicModel StorageDecorator.fetchRelatedTopic(long objectId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
          Convenience method (checks singularity).
(package private)  RelatedTopicModel AttachedTopic.fetchRelatedTopic(String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
(package private) abstract  RelatedTopicModel AttachedDeepaMehtaObject.fetchRelatedTopic(String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
(package private)  RelatedTopicModel AttachedAssociation.fetchRelatedTopic(String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
(package private)  RelatedTopicModel StorageDecorator.fetchTopicRelatedTopic(long topicId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
          Convenience method (checks singularity).
 RelatedTopicModel AttachedRelatedTopic.getModel()
           
 

Methods in de.deepamehta.core.impl that return types with arguments of type RelatedTopicModel
(package private)  ResultList<RelatedTopicModel> StorageDecorator.fetchAssociationRelatedTopics(long assocId, List<String> assocTypeUris, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri, int maxResultSize)
          Convenience method (receives *list* of association types).
(package private)  ResultList<RelatedTopicModel> StorageDecorator.fetchAssociationRelatedTopics(long assocId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri, int maxResultSize)
           
private  ResultList<RelatedTopicModel> ValueStorage.fetchChildTopics(long parentId, AssociationDefinitionModel assocDef)
           
(package private)  ResultList<RelatedTopicModel> StorageDecorator.fetchRelatedTopics(long objectId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
(package private)  ResultList<RelatedTopicModel> AttachedTopic.fetchRelatedTopics(String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri, int maxResultSize)
           
(package private) abstract  ResultList<RelatedTopicModel> AttachedDeepaMehtaObject.fetchRelatedTopics(String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri, int maxResultSize)
           
(package private)  ResultList<RelatedTopicModel> AttachedAssociation.fetchRelatedTopics(String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri, int maxResultSize)
           
(package private)  ResultList<RelatedTopicModel> StorageDecorator.fetchTopicRelatedTopics(long topicId, List<String> assocTypeUris, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri, int maxResultSize)
          Convenience method (receives *list* of association types).
(package private)  ResultList<RelatedTopicModel> StorageDecorator.fetchTopicRelatedTopics(long topicId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri, int maxResultSize)
           
 

Methods in de.deepamehta.core.impl with parameters of type RelatedTopicModel
private  ChildTopics AttachedChildTopics._updateMany(String childTypeUri, RelatedTopicModel newChildTopic)
           
private  ChildTopics AttachedChildTopics._updateOne(String childTypeUri, RelatedTopicModel newChildTopic)
           
(package private)  void ValueStorage.associateChildTopic(DeepaMehtaObjectModel parent, RelatedTopicModel childTopic, AssociationDefinitionModel assocDef)
          Creates an association between the given parent object ("Parent" role) and the child topic ("Child" role).
private  RelatedTopic AttachedChildTopics.associateChildTopic(RelatedTopicModel childTopic, AssociationDefinition assocDef)
           
private  RelatedTopic AttachedChildTopics.createAndAssociateChildTopic(RelatedTopicModel childTopic, AssociationDefinition assocDef)
           
private  void AttachedChildTopics.createChildTopicMany(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
private  void AttachedChildTopics.createChildTopicOne(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
private  RelatedTopic AttachedChildTopics.instantiateRelatedTopic(RelatedTopicModel model)
          Creates an attached topic to be put in this attached object cache.
(package private)  RelatedTopic EmbeddedService.instantiateRelatedTopic(RelatedTopicModel model)
           
private  void TypeStorageImpl.removeCardinalityAssignment(RelatedTopicModel cardinalityAssignment)
           
private  void ValueStorage.storeChildTopic(RelatedTopicModel childTopic, DeepaMehtaObjectModel parent, AssociationDefinitionModel assocDef)
           
private  void AttachedChildTopics.updateAggregationOne(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
 void AttachedDeepaMehtaObject.updateChildTopic(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
private  void AttachedChildTopics.updateChildTopicMany(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
private  void AttachedChildTopics.updateChildTopicOne(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
(package private)  void AttachedChildTopics.updateChildTopics(RelatedTopicModel newChildTopic, List<RelatedTopicModel> newChildTopics, AssociationDefinition assocDef)
           
private  void AttachedChildTopics.updateCompositionOne(RelatedTopicModel newChildTopic, AssociationDefinition assocDef)
           
private  void AttachedChildTopics.updateRelatedTopic(RelatedTopic childTopic, RelatedTopicModel newChildTopic)
           
private  void AttachedChildTopics.updateRelatingAssociation(RelatedTopic childTopic, RelatedTopicModel newChildTopic)
           
 

Method parameters in de.deepamehta.core.impl with type arguments of type RelatedTopicModel
(package private)  ResultList<RelatedTopic> EmbeddedService.instantiateRelatedTopics(ResultList<RelatedTopicModel> models)
           
private  void AttachedChildTopics.updateAggregationMany(List<RelatedTopicModel> newChildTopics, AssociationDefinition assocDef)
           
 void AttachedDeepaMehtaObject.updateChildTopics(List<RelatedTopicModel> newChildTopics, AssociationDefinition assocDef)
           
(package private)  void AttachedChildTopics.updateChildTopics(RelatedTopicModel newChildTopic, List<RelatedTopicModel> newChildTopics, AssociationDefinition assocDef)
           
private  void AttachedChildTopics.updateCompositionMany(List<RelatedTopicModel> newChildTopics, AssociationDefinition assocDef)
           
 

Constructors in de.deepamehta.core.impl with parameters of type RelatedTopicModel
AttachedRelatedTopic(RelatedTopicModel model, EmbeddedService dms)
           
 

Uses of RelatedTopicModel in de.deepamehta.core.model
 

Subclasses of RelatedTopicModel in de.deepamehta.core.model
 class TopicDeletionModel
           
 class TopicReferenceModel
           
 

Methods in de.deepamehta.core.model that return RelatedTopicModel
 RelatedTopicModel RelatedTopicModel.clone()
           
private  RelatedTopicModel ChildTopicsModel.createReferenceModel(Object value, AssociationModel relatingAssoc)
           
private  RelatedTopicModel ChildTopicsModel.createTopicModel(String childTypeUri, Object value)
          Creates a topic model from a JSON value.
 RelatedTopicModel ChildTopicsModel.getTopic(String childTypeUri)
          Accesses a single-valued child.
 RelatedTopicModel ChildTopicsModel.getTopic(String childTypeUri, RelatedTopicModel defaultValue)
          Accesses a single-valued child.
 

Methods in de.deepamehta.core.model that return types with arguments of type RelatedTopicModel
 List<RelatedTopicModel> ChildTopicsModel.getTopics(String childTypeUri)
          Accesses a multiple-valued child.
 List<RelatedTopicModel> ChildTopicsModel.getTopics(String childTypeUri, List<RelatedTopicModel> defaultValue)
          Accesses a multiple-valued child.
 

Methods in de.deepamehta.core.model with parameters of type RelatedTopicModel
 ChildTopicsModel ChildTopicsModel.add(String childTypeUri, RelatedTopicModel value)
          Adds a value to a multiple-valued child.
 RelatedTopicModel ChildTopicsModel.getTopic(String childTypeUri, RelatedTopicModel defaultValue)
          Accesses a single-valued child.
 ChildTopicsModel ChildTopicsModel.put(String childTypeUri, RelatedTopicModel value)
          Puts a value in a single-valued child.
 

Method parameters in de.deepamehta.core.model with type arguments of type RelatedTopicModel
static List<IndexMode> IndexMode.fromTopics(List<RelatedTopicModel> topics)
           
 List<RelatedTopicModel> ChildTopicsModel.getTopics(String childTypeUri, List<RelatedTopicModel> defaultValue)
          Accesses a multiple-valued child.
 ChildTopicsModel ChildTopicsModel.put(String childTypeUri, List<RelatedTopicModel> values)
          Sets the values of a multiple-valued child.
 

Uses of RelatedTopicModel in de.deepamehta.core.storage.spi
 

Methods in de.deepamehta.core.storage.spi that return types with arguments of type RelatedTopicModel
 List<RelatedTopicModel> DeepaMehtaStorage.fetchAssociationRelatedTopics(long assocId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
 List<RelatedTopicModel> DeepaMehtaStorage.fetchRelatedTopics(long objectId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
 List<RelatedTopicModel> DeepaMehtaStorage.fetchTopicRelatedTopics(long topicId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
 

Uses of RelatedTopicModel in de.deepamehta.plugins.facets.model
 

Methods in de.deepamehta.plugins.facets.model that return RelatedTopicModel
 RelatedTopicModel FacetValue.getTopic()
          Accesses a single-valued facet.
 

Methods in de.deepamehta.plugins.facets.model that return types with arguments of type RelatedTopicModel
 List<RelatedTopicModel> FacetValue.getTopics()
          Accesses a multiple-valued facet.
 

Methods in de.deepamehta.plugins.facets.model with parameters of type RelatedTopicModel
 FacetValue FacetValue.put(RelatedTopicModel value)
          Puts a value in a single-valued facet.
 

Method parameters in de.deepamehta.plugins.facets.model with type arguments of type RelatedTopicModel
 FacetValue FacetValue.put(List<RelatedTopicModel> values)
          Sets the values of a multiple-valued facet.
 

Uses of RelatedTopicModel in de.deepamehta.storage.neo4j
 

Methods in de.deepamehta.storage.neo4j that return types with arguments of type RelatedTopicModel
private  List<RelatedTopicModel> Neo4jStorage.buildRelatedTopics(List<AssociationModel> assocs, long playerId)
           
 List<RelatedTopicModel> Neo4jStorage.fetchAssociationRelatedTopics(long assocId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
 List<RelatedTopicModel> Neo4jStorage.fetchRelatedTopics(long id, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
 List<RelatedTopicModel> Neo4jStorage.fetchTopicRelatedTopics(long topicId, String assocTypeUri, String myRoleTypeUri, String othersRoleTypeUri, String othersTopicTypeUri)
           
 



Copyright © 2015. All Rights Reserved.