MaltParser 1.0.3

Uses of Interface
org.maltparser.core.symbol.SymbolTable

Packages that use SymbolTable
org.maltparser.core.dataformat Contains classes for describing the data format, such as CoNLL shared task format and Malt-TAB format. 
org.maltparser.core.graph Contains classes for building a dependency graph. 
org.maltparser.core.graph.arc Provides classes for connecting two nodes with a labeled arc. 
org.maltparser.core.sentence Provides classes for representing a sentence. 
org.maltparser.core.symbol Contains classes for handling different kinds of symbols (e.g., word forms, root labels and parser actions). 
org.maltparser.core.symbol.nullvalue MaltParser has the possibility of distinguishing between different kinds of null-values when extracting the feature vector. 
org.maltparser.core.symbol.trie Provides classes for handling different kinds of symbols as trie data structure. 
org.maltparser.parser.algorithm.covington Implements the Covington deterministic parsing algorithms. 
org.maltparser.parser.algorithm.helper Contains classes that all deterministic parsing algorithm use (e.g., parser action and transition). 
org.maltparser.parser.algorithm.nivre Implements the Nivre deterministic parsing algorithms. 
org.maltparser.parser.guide.feature Contains classes which handle the feature extraction. 
org.maltparser.transform Contains classes for performing pre-processing and post-processing transformations on dependency graphs. 
 

Uses of SymbolTable in org.maltparser.core.dataformat
 

Methods in org.maltparser.core.dataformat that return SymbolTable
 SymbolTable ColumnDescription.getSymbolTable()
           
 

Methods in org.maltparser.core.dataformat with parameters of type SymbolTable
 void ColumnDescription.setSymbolTable(SymbolTable symbolTable)
           
 

Uses of SymbolTable in org.maltparser.core.graph
 

Fields in org.maltparser.core.graph with type parameters of type SymbolTable
protected  HashMap<SymbolTable,SymbolTable> DependencyGraph.outputColumnMap
           
protected  HashMap<SymbolTable,SymbolTable> DependencyGraph.outputColumnMap
           
 

Methods in org.maltparser.core.graph with parameters of type SymbolTable
 void DependencyGraph.changeOutputColumnSymbolTable(SymbolTable columnTable, SymbolTable table)
           
 Integer Node.getHeadLabelCode(SymbolTable table)
           
 Integer DependencyGraph.getLabelCode(int headindex, int depindex, SymbolTable table)
           
 Integer Node.getLabelCode(int headindex, SymbolTable table)
           
 Integer Node.getLabelCode(Node head, SymbolTable table)
           
 Integer Node.getLabelCode(SymbolTable table)
           
 String RootLabels.getRootLabel(SymbolTable table)
           
 Integer RootLabels.getRootLabelCode(SymbolTable table)
           
 boolean DependencyGraph.hasLabeledDependency(Node dependent, SymbolTable table)
           
 

Uses of SymbolTable in org.maltparser.core.graph.arc
 

Methods in org.maltparser.core.graph.arc with parameters of type SymbolTable
 Integer SingleHeadArc.getFirstHeadLabelCode(SymbolTable table)
           
 Integer MultipleHeadArcs.getFirstHeadLabelCode(SymbolTable table)
           
 Integer HeadArcs.getFirstHeadLabelCode(SymbolTable table)
           
 Integer SingleHeadArc.getLabelCode(int headindex, SymbolTable table)
           
 Integer MultipleHeadArcs.getLabelCode(int headindex, SymbolTable table)
           
 Integer HeadArcs.getLabelCode(int headindex, SymbolTable table)
           
 Integer SingleHeadArc.getLabelCode(Node head, SymbolTable table)
           
 Integer MultipleHeadArcs.getLabelCode(Node head, SymbolTable table)
           
 Integer HeadArcs.getLabelCode(Node head, SymbolTable table)
           
 

Uses of SymbolTable in org.maltparser.core.sentence
 

Methods in org.maltparser.core.sentence that return SymbolTable
 SymbolTable StringColumnInstance.getSymbolTable()
           
 

Uses of SymbolTable in org.maltparser.core.symbol
 

Methods in org.maltparser.core.symbol that return SymbolTable
 SymbolTable SymbolTableHandler.addSymbolTable(String tableName)
           
 SymbolTable SymbolTableHandler.addSymbolTable(String tableName, int columnCategory, String nullValueStrategy)
           
 SymbolTable SymbolTableHandler.addSymbolTable(String tableName, int columnCategory, String nullValueStrategy, String rootLabel)
           
 SymbolTable SymbolTableHandler.addSymbolTable(String tableName, SymbolTable parentTable)
           
 SymbolTable SymbolTableHandler.getSymbolTable(String tableName)
           
 SymbolTable SymbolTableHandler.loadTagset(String fileName, String tableName, String charSet, int columnCategory, String nullValueStrategy)
           
 SymbolTable SymbolTableHandler.loadTagset(String fileName, String tableName, String charSet, int columnCategory, String nullValueStrategy, String rootLabel)
           
 

Methods in org.maltparser.core.symbol with parameters of type SymbolTable
 SymbolTable SymbolTableHandler.addSymbolTable(String tableName, SymbolTable parentTable)
           
 void SymbolTable.copy(SymbolTable fromTable)
           
 

Uses of SymbolTable in org.maltparser.core.symbol.nullvalue
 

Fields in org.maltparser.core.symbol.nullvalue declared as SymbolTable
protected  SymbolTable NullValues.table
           
 

Methods in org.maltparser.core.symbol.nullvalue that return SymbolTable
 SymbolTable NullValues.getSymbolTable()
           
 

Constructors in org.maltparser.core.symbol.nullvalue with parameters of type SymbolTable
InputNullValues(String nullValueStrategy, SymbolTable table)
           
NullValues(SymbolTable table)
           
OutputNullValues(String nullValueStrategy, SymbolTable table, String rootLabel)
           
 

Uses of SymbolTable in org.maltparser.core.symbol.trie
 

Classes in org.maltparser.core.symbol.trie that implement SymbolTable
 class TrieSymbolTable
           
 

Methods in org.maltparser.core.symbol.trie that return SymbolTable
 SymbolTable TrieSymbolTableHandler.loadTagset(String fileName, String tableName, String charSet, int columnCategory, String nullValueStrategy)
           
 SymbolTable TrieSymbolTableHandler.loadTagset(String fileName, String tableName, String charSet, int columnCategory, String nullValueStrategy, String rootLabel)
           
 

Methods in org.maltparser.core.symbol.trie with parameters of type SymbolTable
 TrieSymbolTable TrieSymbolTableHandler.addSymbolTable(String tableName, SymbolTable parentTable)
           
 void TrieSymbolTable.copy(SymbolTable fromTable)
           
 

Uses of SymbolTable in org.maltparser.parser.algorithm.covington
 

Fields in org.maltparser.parser.algorithm.covington declared as SymbolTable
protected  SymbolTable Covington.deprel
           
 

Uses of SymbolTable in org.maltparser.parser.algorithm.helper
 

Methods in org.maltparser.parser.algorithm.helper that return SymbolTable
 SymbolTable ParserAction.getOutputSymbolTable(String arcName)
           
 

Methods in org.maltparser.parser.algorithm.helper that return types with arguments of type SymbolTable
 HashMap<String,SymbolTable> ParserAction.getOutputSymbolTables()
           
 

Methods in org.maltparser.parser.algorithm.helper with parameters of type SymbolTable
 void ParserAction.addAction(int code, SymbolTable table, Integer labelCode)
           
 void ParserAction.addAction(int code, SymbolTable table, String label)
           
 void ParserAction.addAction(String transitionName, SymbolTable table, Integer labelCode)
           
 void ParserAction.addAction(String transitionName, SymbolTable table, String label)
           
 void ParserAction.addTransitionToClassSymbolTable(SymbolTable classes)
           
 String ParserAction.getLabel(SymbolTable table, int index)
           
 Integer ParserAction.getLabelCode(SymbolTable table, int index)
           
 String ParserAction.getLastLabel(SymbolTable table)
           
 Integer ParserAction.getLastLabelCode(SymbolTable table)
           
 void ParserAction.replaceAction(int code, SymbolTable table, Integer labelCode)
           
 void ParserAction.replaceAction(int code, SymbolTable table, String label)
           
 void ParserAction.replaceAction(String name, SymbolTable table, Integer labelCode)
           
 void ParserAction.replaceAction(String name, SymbolTable table, String label)
           
 

Uses of SymbolTable in org.maltparser.parser.algorithm.nivre
 

Fields in org.maltparser.parser.algorithm.nivre declared as SymbolTable
protected  SymbolTable Nivre.deprel
           
 

Uses of SymbolTable in org.maltparser.parser.guide.feature
 

Methods in org.maltparser.parser.guide.feature that return SymbolTable
 SymbolTable SplitFeature.getSymbolTable()
           
 SymbolTable ColumnFeature.getSymbolTable()
           
 

Uses of SymbolTable in org.maltparser.transform
 

Constructors in org.maltparser.transform with parameters of type SymbolTable
PseudoProjectivity(String markingStrategy, String coveredRoot, String liftingOrder, org.apache.log4j.Logger configLogger, SymbolTable deprelSymbolTable)
           
 


MaltParser 1.0.3

Copyright 2007 Johan Hall, Jens Nilsson and Joakim Nivre.