Uses of Interface
de.learnlib.sul.SULMapper
-
Packages that use SULMapper Package Description de.learnlib.driver.reflect de.learnlib.mapper de.learnlib.sul This package (and related packages) contains interfaces and classes for formalizing access to systems under learning (SULs). -
-
Uses of SULMapper in de.learnlib.driver.reflect
Classes in de.learnlib.driver.reflect that implement SULMapper Modifier and Type Class Description class
SimplePOJOExceptionMapper
A mapper that wraps any kind ofRuntimeException
that occurs duringsteps
of theSimplePOJOTestDriver
into aMappedException
whose output is anError
object, followed by repeatedUnobserved
outputs. -
Uses of SULMapper in de.learnlib.mapper
Classes in de.learnlib.mapper that implement SULMapper Modifier and Type Class Description class
StringMapper<CI>
Methods in de.learnlib.mapper that return SULMapper Modifier and Type Method Description static <AI,AO,ACI,CAO,CI,CO>
SULMapper<AI,AO,CI,CO>SULMappers. compose(SULMapper<? super AI,? extends AO,ACI,CAO> outerMapper, SULMapper<? super ACI,? extends CAO,? extends CI,? super CO> innerMapper)
Methods in de.learnlib.mapper with parameters of type SULMapper Modifier and Type Method Description static <AI,AO,CI,CO>
SUL<AI,AO>SULMappers. apply(SULMapper<? super AI,? extends AO,CI,CO> mapper, SUL<? super CI,? extends CO> sul)
static <AI,AO,ACI,CAO,CI,CO>
SULMapper<AI,AO,CI,CO>SULMappers. compose(SULMapper<? super AI,? extends AO,ACI,CAO> outerMapper, SULMapper<? super ACI,? extends CAO,? extends CI,? super CO> innerMapper)
Constructors in de.learnlib.mapper with parameters of type SULMapper Constructor Description MappedSUL(SULMapper<? super AI,? extends AO,? extends CI,? super CO> mapper, SUL<? super CI,? extends CO> sul)
-
Uses of SULMapper in de.learnlib.sul
Methods in de.learnlib.sul that return SULMapper Modifier and Type Method Description default SULMapper<AI,AO,CI,CO>
SULMapper. fork()
Forks this mapper, i.e., returns a mapper that behaves in exactly the same way as this mapper, but allows for being used independently of this mapper.
-