Package de.learnlib.mapper
Class StringMapper<CI>
- java.lang.Object
-
- de.learnlib.mapper.StringMapper<CI>
-
-
Constructor Summary
Constructors Constructor Description StringMapper(Alphabet<CI> alphabet)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Alphabet<String>
getMappedInputs()
CI
mapInput(String abstractInput)
Method that maps an abstract input to a corresponding concrete input.String
mapOutput(Object concreteOutput)
Method that maps a concrete output to a corresponding abstract output.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.learnlib.sul.SULMapper
canFork, fork, mapUnwrappedException, mapWrappedException
-
-
-
-
Method Detail
-
mapInput
public CI mapInput(String abstractInput)
Description copied from interface:Mapper
Method that maps an abstract input to a corresponding concrete input.
-
mapOutput
public String mapOutput(Object concreteOutput)
Description copied from interface:Mapper
Method that maps a concrete output to a corresponding abstract output.
-
-