001package org.maltparser.core.symbol; 002 003import org.maltparser.core.exception.MaltChainedException; 004 005public interface Table { 006 public int addSymbol(String symbol) throws MaltChainedException; 007 public String getSymbolCodeToString(int code) throws MaltChainedException; 008 public int getSymbolStringToCode(String symbol) throws MaltChainedException; 009 public double getSymbolStringToValue(String symbol) throws MaltChainedException; 010 public String getName(); 011 public int size(); 012}