Uses of Class
edu.columbia.cs.ref.model.CandidateSentence

Packages that use CandidateSentence
edu.columbia.cs.ref.algorithm   
edu.columbia.cs.ref.model   
edu.columbia.cs.ref.model.core   
edu.columbia.cs.ref.model.core.impl   
edu.columbia.cs.ref.model.core.structure   
edu.columbia.cs.ref.model.core.structure.impl   
edu.columbia.cs.ref.tool.io   
 

Uses of CandidateSentence in edu.columbia.cs.ref.algorithm
 

Methods in edu.columbia.cs.ref.algorithm that return types with arguments of type CandidateSentence
 java.util.Set<CandidateSentence> CandidatesGenerator.generateCandidates(Document doc, java.util.Set<RelationshipType> relationshipTypes)
          This is the method that is responsible for the generation of the candidates for a given document.
 

Method parameters in edu.columbia.cs.ref.algorithm with type arguments of type CandidateSentence
static java.util.Set<OperableStructure> StructureGenerator.generateStructures(java.util.Set<CandidateSentence> candidates, StructureConfiguration config)
          Generate all the operable structures from a given set of candidate sentences with regard for a given configuration file.
 

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

Methods in edu.columbia.cs.ref.model with parameters of type CandidateSentence
 OperableStructure StructureConfiguration.getOperableStructure(CandidateSentence sent)
          Gets the operable structure.
 

Uses of CandidateSentence in edu.columbia.cs.ref.model.core
 

Methods in edu.columbia.cs.ref.model.core with parameters of type CandidateSentence
 OperableStructure Core.getStructure(CandidateSentence sent)
           
 

Uses of CandidateSentence in edu.columbia.cs.ref.model.core.impl
 

Methods in edu.columbia.cs.ref.model.core.impl with parameters of type CandidateSentence
 OperableStructure BagOfNGramsKernel.createOperableStructure(CandidateSentence sent)
           
 OperableStructure DependencyGraphsKernel.createOperableStructure(CandidateSentence sent)
           
 OperableStructure SubsequencesKernel.createOperableStructure(CandidateSentence sent)
           
 OperableStructure ShortestPathKernel.createOperableStructure(CandidateSentence sent)
           
 

Uses of CandidateSentence in edu.columbia.cs.ref.model.core.structure
 

Methods in edu.columbia.cs.ref.model.core.structure that return CandidateSentence
 CandidateSentence OperableStructure.getCandidateSentence()
           
 

Constructors in edu.columbia.cs.ref.model.core.structure with parameters of type CandidateSentence
OperableStructure(CandidateSentence c)
           
 

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

Constructors in edu.columbia.cs.ref.model.core.structure.impl with parameters of type CandidateSentence
OpenInformationExtractionOS(CandidateSentence c)
           
TaggedBagOfNgrams(CandidateSentence s)
           
TaggedBagOfNgrams(CandidateSentence s, int sizeNGrams, int sizeWindow)
           
TaggedGraph(CandidateSentence s)
           
TaggedSequence(CandidateSentence s)
           
 

Uses of CandidateSentence in edu.columbia.cs.ref.tool.io
 

Methods in edu.columbia.cs.ref.tool.io that return types with arguments of type CandidateSentence
static java.util.Set<CandidateSentence> CandidatesSentenceReader.readCandidateSentences(java.lang.String input)
          Method to read a set of candidate sentences from a file.
 

Method parameters in edu.columbia.cs.ref.tool.io with type arguments of type CandidateSentence
static void CandidatesSentenceWriter.writeCandidateSentences(java.util.Set<CandidateSentence> candidates, java.lang.String output)
          Method to write a set of candidate sentences to a file.