Uses of Class
edu.columbia.cs.ref.model.entity.Entity

Packages that use Entity
edu.columbia.cs.cg.pattern.prdualrank   
edu.columbia.cs.cg.prdualrank.pattern.extractor.resource   
edu.columbia.cs.cg.prdualrank.searchengine.querygenerator   
edu.columbia.cs.cg.prdualrank.searchengine.querygenerator.impl   
edu.columbia.cs.ref.model   
edu.columbia.cs.ref.model.constraint.role   
edu.columbia.cs.ref.model.constraint.role.impl   
edu.columbia.cs.ref.model.core.structure.impl   
edu.columbia.cs.ref.model.entity   
edu.columbia.cs.ref.model.matcher   
edu.columbia.cs.ref.model.matcher.impl   
edu.columbia.cs.ref.model.relationship   
edu.columbia.cs.ref.tool.tagger.entity   
 

Uses of Entity in edu.columbia.cs.cg.pattern.prdualrank
 

Classes in edu.columbia.cs.cg.pattern.prdualrank with type parameters of type Entity
 class SimpleAttributeExtractionPattern<E extends Entity,D extends TokenizedDocument>
          The Class SimpleAttributeExtractionPattern represents a pattern that can be used for Role Extraction.
 

Methods in edu.columbia.cs.cg.pattern.prdualrank that return types with arguments of type Entity
 java.util.List<Entity> SimpleAttributeExtractionPattern.findMatch(TokenizedDocument d)
           
 

Constructor parameters in edu.columbia.cs.cg.pattern.prdualrank with type arguments of type Entity
ExtractionPattern(java.util.List<java.lang.String> roles, java.util.Map<java.lang.String,SimpleAttributeExtractionPattern<Entity,TokenizedDocument>> simpleAttributeMap, RelationshipType rType)
          Instantiates a new extraction pattern.
 

Uses of Entity in edu.columbia.cs.cg.prdualrank.pattern.extractor.resource
 

Methods in edu.columbia.cs.cg.prdualrank.pattern.extractor.resource with parameters of type Entity
 void AttributeContext.addContext(Entity entity, java.lang.String role, java.lang.String[] before, java.lang.String[] after)
          Adds the context for an specific role and entity.
 

Uses of Entity in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator
 

Methods in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator with parameters of type Entity
abstract  Q QueryGenerator.generateQuery(Entity role)
          Generate query based on a specific entity
 

Uses of Entity in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator.impl
 

Methods in edu.columbia.cs.cg.prdualrank.searchengine.querygenerator.impl with parameters of type Entity
 org.apache.lucene.search.Query LuceneQueryGenerator.generateQuery(Entity role)
           
 java.lang.String ConcatQueryGenerator.generateQuery(Entity role)
           
 

Uses of Entity in edu.columbia.cs.ref.model
 

Methods in edu.columbia.cs.ref.model that return Entity
 Entity[] CandidateSentence.getEntities()
          This method returns an array with the ordered entities that corresponds to the tuple representation of the relationships present in this candidate sentence
 Entity Document.getEntity(java.lang.String id)
          Obtains the entity annotation with a given id
 Entity CandidateSentence.getRole(RelationshipType type, java.lang.String role)
          Given a relationship type and a role, it returns the entity that is fulfilling that role in a relationship of this candidate sentence
 

Methods in edu.columbia.cs.ref.model that return types with arguments of type Entity
 java.util.Collection<Entity> Document.getEntities()
          Obtains the annotations of entities present in the document
 

Methods in edu.columbia.cs.ref.model with parameters of type Entity
 void Document.addEntity(Entity entity)
          Adds a new annotation of an entity present in the document
 Span TokenizedDocument.getEntitySpan(Entity entity)
          Returns the indexes in the tokenization.
 

Constructor parameters in edu.columbia.cs.ref.model with type arguments of type Entity
CandidateSentence(Sentence sentence, java.util.List<Entity> entities)
          Candidate sentence constructor.
 

Uses of Entity in edu.columbia.cs.ref.model.constraint.role
 

Methods in edu.columbia.cs.ref.model.constraint.role that return types with arguments of type Entity
 java.util.Set<Entity> RoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
          Returns the subset of all the input entities that fulfill the constraint
 

Methods in edu.columbia.cs.ref.model.constraint.role with parameters of type Entity
 boolean RoleConstraint.checkConstraint(Entity role)
          Check check if the input entity fulfills the constraint
 

Method parameters in edu.columbia.cs.ref.model.constraint.role with type arguments of type Entity
 java.util.Set<Entity> RoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
          Returns the subset of all the input entities that fulfill the constraint
 

Uses of Entity in edu.columbia.cs.ref.model.constraint.role.impl
 

Methods in edu.columbia.cs.ref.model.constraint.role.impl that return types with arguments of type Entity
 java.util.Set<Entity> EntityTypeConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> MatchRoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> NoConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> IsOptionalConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> OrRoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> AndRoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 

Methods in edu.columbia.cs.ref.model.constraint.role.impl with parameters of type Entity
 boolean EntityTypeConstraint.checkConstraint(Entity role)
           
 boolean MatchRoleConstraint.checkConstraint(Entity role)
           
 boolean NoConstraint.checkConstraint(Entity role)
           
 boolean IsOptionalConstraint.checkConstraint(Entity role)
           
 boolean OrRoleConstraint.checkConstraint(Entity role)
           
 boolean AndRoleConstraint.checkConstraint(Entity role)
           
 

Method parameters in edu.columbia.cs.ref.model.constraint.role.impl with type arguments of type Entity
 java.util.Set<Entity> EntityTypeConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> MatchRoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> NoConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> IsOptionalConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> OrRoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 java.util.Set<Entity> AndRoleConstraint.getCompatibleEntities(java.util.Set<Entity> entities)
           
 

Constructors in edu.columbia.cs.ref.model.constraint.role.impl with parameters of type Entity
MatchRoleConstraint(EntityMatcher entityMatcher, Entity original)
          Instantiates a new match role constraint.
 

Uses of Entity in edu.columbia.cs.ref.model.core.structure.impl
 

Methods in edu.columbia.cs.ref.model.core.structure.impl with parameters of type Entity
 int[] TaggedGraph.getEntityIndexes(Entity[] entities, SequenceFS<Span> sentenceTokens)
           
 int[] TaggedBagOfNgrams.getEntityIndexes(Entity[] entities, SequenceFS<Span> sentenceTokens)
           
 int[] TaggedSequence.getEntityIndexes(Entity[] entities, SequenceFS<Span> sentenceTokens)
           
 

Uses of Entity in edu.columbia.cs.ref.model.entity
 

Fields in edu.columbia.cs.ref.model.entity declared as Entity
static Entity Entity.NULL_ENTITY
          The Constant NULL_ENTITY.
 

Methods in edu.columbia.cs.ref.model.entity with parameters of type Entity
 int Entity.compareTo(Entity o)
           
 

Uses of Entity in edu.columbia.cs.ref.model.matcher
 

Methods in edu.columbia.cs.ref.model.matcher with parameters of type Entity
 boolean EntityMatcher.match(Entity original, Entity entity)
          Determines if the two input entities match
 

Uses of Entity in edu.columbia.cs.ref.model.matcher.impl
 

Methods in edu.columbia.cs.ref.model.matcher.impl with parameters of type Entity
 boolean EqualsEntityMatcher.match(Entity original, Entity entity)
           
 boolean AndEntityMatcher.match(Entity original, Entity entity)
           
 boolean DictionaryEntityMatcher.match(Entity original, Entity entity)
           
 boolean OrEntityMatcher.match(Entity original, Entity entity)
           
 

Uses of Entity in edu.columbia.cs.ref.model.relationship
 

Methods in edu.columbia.cs.ref.model.relationship that return Entity
 Entity[] Relationship.getEntities()
          Gets an array containing the entities involved in the relationship
 Entity Relationship.getRole(java.lang.String role)
          Gets the entity that fulfills a given role.
 

Methods in edu.columbia.cs.ref.model.relationship with parameters of type Entity
 void Relationship.setRole(java.lang.String role, Entity e)
          Indicates that a given entity is fulfilling a given role in the relationship.
 

Uses of Entity in edu.columbia.cs.ref.tool.tagger.entity
 

Classes in edu.columbia.cs.ref.tool.tagger.entity with type parameters of type Entity
 class EntityTagger<S extends EntitySpan,E extends Entity>
          The EntityTagger is an abstract class that extends from Tagger.