Module net.automatalib.util
Class MooreBuilder.MooreBuilder1
- java.lang.Object
-
- net.automatalib.util.automaton.builder.MooreBuilder.MooreBuilder1
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MooreBuilder.MooreBuilder3
on(I input)
Sets the input symbol of the current transition definition(s).MooreBuilder.MooreBuilder3
on(I firstInput, I... otherInputs)
Sets multiple input symbols of the current transition definition(s).
-
-
-
Method Detail
-
on
public MooreBuilder.MooreBuilder3 on(I input)
Sets the input symbol of the current transition definition(s).- Parameters:
input
- the input symbol- Returns:
- the next fluent state
-
on
@SafeVarargs public final MooreBuilder.MooreBuilder3 on(I firstInput, I... otherInputs)
Sets multiple input symbols of the current transition definition(s).- Parameters:
firstInput
- the mandatory first input symbolotherInputs
- the optional additional input symbols- Returns:
- the next fluent state
-
-