Class Transition
- java.lang.Object
-
- org.apache.flink.streaming.examples.statemachine.dfa.Transition
-
- All Implemented Interfaces:
Serializable
public class Transition extends Object implements Serializable
A possible transition on a given event into a target state. The transition belongs to its originating state and has an associated probability that is used to generate random transition events.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Transition(EventType eventType, State targetState, float prob)Creates a new transition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)EventTypeeventType()inthashCode()floatprob()StatetargetState()StringtoString()
-