Uses of Class
uk.ac.man.entitytagger.matching.Matcher

Packages that use Matcher
uk.ac.man.entitytagger   
uk.ac.man.entitytagger.entities.misc   
uk.ac.man.entitytagger.generate   
uk.ac.man.entitytagger.matching   
uk.ac.man.entitytagger.matching.matchers   
uk.ac.man.entitytagger.networking   
 

Uses of Matcher in uk.ac.man.entitytagger
 

Methods in uk.ac.man.entitytagger that return Matcher
static Matcher EntityTagger.getMatcher(ArgParser ap, java.util.logging.Logger logger)
          returns a entity recognition Matcher based on the input parameters in ap (provided by the user on the command-line or in a configuration file)
static Matcher EntityTagger.getMatcher(ArgParser ap, java.util.logging.Logger logger, java.lang.String tag)
          returns a entity recognition Matcher based on the input parameters in ap (provided by the user on the command-line or in a configuration file)
 

Methods in uk.ac.man.entitytagger with parameters of type Matcher
static void EntityTagger.doServer(Matcher matcher, int port, int numConns, java.util.logging.Logger logger, boolean enableCache, int report)
           
 

Uses of Matcher in uk.ac.man.entitytagger.entities.misc
 

Methods in uk.ac.man.entitytagger.entities.misc with parameters of type Matcher
private static java.lang.String CellLines.match(java.lang.String organism, Matcher matcher)
           
private static void CellLines.run(org.w3c.dom.Node root, java.io.File outFile, Matcher matcher, java.util.logging.Logger logger, java.sql.Connection conn, java.lang.String table)
           
private static void CellLines.run2(org.w3c.dom.Node cl, java.sql.PreparedStatement pstmt, java.io.BufferedWriter outStream, Matcher matcher)
           
 

Uses of Matcher in uk.ac.man.entitytagger.generate
 

Methods in uk.ac.man.entitytagger.generate with parameters of type Matcher
private static java.util.HashMap<java.lang.String,java.util.HashMap<java.lang.String,java.lang.Integer>> AcronymAnalysis.match(java.util.HashMap<java.lang.String,java.util.HashMap<java.lang.String,java.lang.Integer>> acromineResults, Matcher matcher)
           
 

Uses of Matcher in uk.ac.man.entitytagger.matching
 

Methods in uk.ac.man.entitytagger.matching with parameters of type Matcher
static TaggedDocument MatchOperations.matchDocument(Matcher matcher, Document doc)
           
static void MatchOperations.runDB(Matcher matcher, DocumentIterator documents, int numThreads, java.lang.String table, int report, java.util.logging.Logger logger, java.sql.Connection dbConn, boolean clear)
           
static void MatchOperations.runHTML(Matcher matcher, DocumentIterator documents, int numThreads, java.io.File htmlFile, int report, java.util.logging.Logger logger, TaggedDocument.Format format)
           
static void MatchOperations.runHTML(Matcher matcher, DocumentIterator documents, int numThreads, java.io.File htmlFile, int report, java.util.logging.Logger logger, TaggedDocument.Format format, boolean link)
           
static void MatchOperations.runHTML(Matcher matcher, DocumentIterator documents, int numThreads, java.io.File htmlFile, int report, java.util.logging.Logger logger, TaggedDocument.Format format, boolean link, Function<Pair<java.lang.String>> alternativeTagFunction)
           
static void MatchOperations.runOutWithContext(Matcher matcher, DocumentIterator documents, int numThreads, int report, java.io.File file, java.util.logging.Logger logger, int preLength, int postLength)
           
static void MatchOperations.runToDir(Matcher matcher, DocumentIterator documents, int numThreads, int report, java.io.File outDir, java.util.logging.Logger logger)
           
static void MatchOperations.runToFile(Matcher matcher, DocumentIterator documents, int numThreads, int report, java.io.File outFile, java.util.logging.Logger logger)
           
 

Uses of Matcher in uk.ac.man.entitytagger.matching.matchers
 

Subclasses of Matcher in uk.ac.man.entitytagger.matching.matchers
 class ACIDMatcher
           
 class AutomatonMatcher
          Class for matching using an automaton
 class DuplicationMatcher
           
 class IntersectionMatcher
           
 class MatchPostProcessor
           
 class PrecomputedMatcher
           
 class RegexpMatcher
           
 class SentenceMatcher
           
 class TaxonGrabMatcher
           
 class UnionMatcher
           
 class VariantDictionaryMatcher
          Class for performing NER dictionary matching against text.
 

Fields in uk.ac.man.entitytagger.matching.matchers declared as Matcher
private  Matcher DuplicationMatcher.matcher
           
private  Matcher MatchPostProcessor.matcher
           
private  Matcher ConcurrentMatcher.matcher
           
private  Matcher ConcurrentMatcher.MatchProblem.matcher
           
 

Fields in uk.ac.man.entitytagger.matching.matchers with type parameters of type Matcher
private  java.util.List<Matcher> IntersectionMatcher.matchers
           
private  java.util.List<Matcher> UnionMatcher.matchers
           
 

Methods in uk.ac.man.entitytagger.matching.matchers that return types with arguments of type Matcher
static java.util.Map<java.lang.String,Matcher> VariantDictionaryMatcher.loadSeparated(java.io.File[] inFiles, boolean ignoreCase)
           
static java.util.Map<java.lang.String,Matcher> VariantDictionaryMatcher.loadSeparatedFromDB(java.sql.Connection conn, java.lang.String[] tableNames, boolean ignoreCase)
           
 

Constructors in uk.ac.man.entitytagger.matching.matchers with parameters of type Matcher
ConcurrentMatcher.MatchProblem(Matcher matcher, Document doc)
           
ConcurrentMatcher(Matcher matcher, DocumentIterator documents)
          Create an object which will do matching using a single matcher over a number of documents.
DuplicationMatcher(Matcher matcher)
           
MatchPostProcessor(Matcher matcher, Matcher.Disambiguation mode, boolean abbrevResolution, java.io.File ppConvertIDs, Postprocessor postProcessor)
           
 

Constructor parameters in uk.ac.man.entitytagger.matching.matchers with type arguments of type Matcher
IntersectionMatcher(java.util.List<Matcher> matchers)
           
UnionMatcher(java.util.List<Matcher> matchers, boolean equalMatchers)
           
 

Uses of Matcher in uk.ac.man.entitytagger.networking
 

Subclasses of Matcher in uk.ac.man.entitytagger.networking
 class SimpleClientMatcher
           
 

Fields in uk.ac.man.entitytagger.networking declared as Matcher
private  Matcher AlibabaWorker.matcher
           
private  Matcher SimpleServerWorker.matcher
           
private  Matcher SimpleServer.matcher
           
 

Constructors in uk.ac.man.entitytagger.networking with parameters of type Matcher
AlibabaWorker(java.net.Socket s, Matcher matcher, java.util.logging.Logger logger, java.io.File pmcBaseDir, java.io.File medlineBaseDir)
           
SimpleServer(int port, Matcher matcher, boolean enableCache)
           
SimpleServerWorker(java.net.Socket s, Matcher matcher, java.util.Map<java.lang.Integer,java.util.List<Mention>> cache, java.util.concurrent.Semaphore cacheSem)