Uses of Class
org.apache.flink.streaming.examples.statemachine.event.EventType
-
Packages that use EventType Package Description org.apache.flink.streaming.examples.statemachine.dfa org.apache.flink.streaming.examples.statemachine.event -
-
Uses of EventType in org.apache.flink.streaming.examples.statemachine.dfa
Fields in org.apache.flink.streaming.examples.statemachine.dfa declared as EventType Modifier and Type Field Description EventTypeEventTypeAndState. eventTypeMethods in org.apache.flink.streaming.examples.statemachine.dfa that return EventType Modifier and Type Method Description EventTypeTransition. eventType()EventTypeState. randomInvalidTransition(Random rnd)Returns an event type that, if applied as a transition on this state, will result in an illegal state transition.Methods in org.apache.flink.streaming.examples.statemachine.dfa with parameters of type EventType Modifier and Type Method Description StateState. transition(EventType evt)Gets the state after transitioning from this state based on the given event.Constructors in org.apache.flink.streaming.examples.statemachine.dfa with parameters of type EventType Constructor Description EventTypeAndState(EventType eventType, State state)Transition(EventType eventType, State targetState, float prob)Creates a new transition. -
Uses of EventType in org.apache.flink.streaming.examples.statemachine.event
Methods in org.apache.flink.streaming.examples.statemachine.event that return EventType Modifier and Type Method Description EventTypeAlert. transition()EventTypeEvent. type()Gets the event's type.static EventTypeEventType. valueOf(String name)Returns the enum constant of this type with the specified name.static EventType[]EventType. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.flink.streaming.examples.statemachine.event with parameters of type EventType Constructor Description Alert(int address, State state, EventType transition)Creates a new alert.Event(EventType type, int sourceAddress)Creates a new event.
-