Uses of Interface
edu.columbia.cs.ref.model.matcher.EntityMatcher

Packages that use EntityMatcher
edu.columbia.cs.ref.model.constraint.role.impl   
edu.columbia.cs.ref.model.matcher.impl   
edu.columbia.cs.ref.model.relationship   
 

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

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

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

Classes in edu.columbia.cs.ref.model.matcher.impl that implement EntityMatcher
 class AndEntityMatcher
          The Class AndEntityMatcher is an implementation of EntityMatcher that is used to compose several other matchers.
 class DictionaryEntityMatcher
          The Class DictionaryEntityMatcher is an implementation of the EntityMatcher that uses a dictionary of aliases to determine if two entities match.
 class EqualsEntityMatcher
          The Class EqualsEntityMatcher is an implementation of the EntityMatcher that uses the equals method ot the entities directly to determine if they match.
 class OrEntityMatcher
          The Class OrEntityMatcher is an implementation of EntityMatcher that is used to compose several other matchers.
 

Constructors in edu.columbia.cs.ref.model.matcher.impl with parameters of type EntityMatcher
AndEntityMatcher(EntityMatcher... entityMatchers)
          Instantiates a new and entity matcher.
OrEntityMatcher(EntityMatcher... entityMatchers)
          Instantiates a new or entity matcher.
 

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

Methods in edu.columbia.cs.ref.model.relationship that return EntityMatcher
 EntityMatcher RelationshipType.getMatchers(java.lang.String role)
          Gets the entity matcher for a given role
 

Methods in edu.columbia.cs.ref.model.relationship with parameters of type EntityMatcher
 void RelationshipType.setMatchers(EntityMatcher matcher, java.lang.String role)
          Sets the entity matcher for a given role