Module de.learnlib.datastructure
Class SuffixASCIIReader<I,D>
- java.lang.Object
- 
- de.learnlib.datastructure.observationtable.reader.SuffixASCIIReader<I,D>
 
- 
- All Implemented Interfaces:
- ObservationTableReader<I,D>
 
 public class SuffixASCIIReader<I,D> extends Object implements ObservationTableReader<I,D> 
- 
- 
Constructor SummaryConstructors Constructor Description SuffixASCIIReader()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ObservationTable<I,D>read(String source, net.automatalib.alphabet.Alphabet<I> alphabet)Reads the string representation of an observation table and returns an implementation ofObservationTablewhich allows access to short and long prefixes as well as suffixes.
 
- 
- 
- 
Method Detail- 
readpublic ObservationTable<I,D> read(String source, net.automatalib.alphabet.Alphabet<I> alphabet) Description copied from interface:ObservationTableReaderReads the string representation of an observation table and returns an implementation ofObservationTablewhich allows access to short and long prefixes as well as suffixes.- Specified by:
- readin interface- ObservationTableReader<I,D>
- Parameters:
- source- The string representation to read, must not be- null.
- alphabet- The learning alphabet containing the symbols used, must not be- null.
- Returns:
- an implementation of ObservationTablewhich allows at lease access toObservationTable.getSuffixes(),ObservationTable.getShortPrefixes(), andObservationTable.getLongPrefixes(). Will never benull.
 
 
- 
 
-