Uses of Class
io.serverlessworkflow.api.states.DefaultState.Type
-
Packages that use DefaultState.Type Package Description io.serverlessworkflow.api.deserializers io.serverlessworkflow.api.interfaces io.serverlessworkflow.api.states -
-
Uses of DefaultState.Type in io.serverlessworkflow.api.deserializers
Methods in io.serverlessworkflow.api.deserializers that return DefaultState.Type Modifier and Type Method Description DefaultState.TypeDefaultStateTypeDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt) -
Uses of DefaultState.Type in io.serverlessworkflow.api.interfaces
Methods in io.serverlessworkflow.api.interfaces that return DefaultState.Type Modifier and Type Method Description DefaultState.TypeState. getType() -
Uses of DefaultState.Type in io.serverlessworkflow.api.states
Methods in io.serverlessworkflow.api.states that return DefaultState.Type Modifier and Type Method Description static DefaultState.TypeDefaultState.Type. fromValue(String value)DefaultState.TypeDefaultState. getType()State type (Required)static DefaultState.TypeDefaultState.Type. valueOf(String name)Returns the enum constant of this type with the specified name.static DefaultState.Type[]DefaultState.Type. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.serverlessworkflow.api.states with parameters of type DefaultState.Type Modifier and Type Method Description voidDefaultState. setType(DefaultState.Type type)State type (Required)CallbackStateCallbackState. withType(DefaultState.Type type)DefaultStateDefaultState. withType(DefaultState.Type type)EventStateEventState. withType(DefaultState.Type type)ForEachStateForEachState. withType(DefaultState.Type type)InjectStateInjectState. withType(DefaultState.Type type)OperationStateOperationState. withType(DefaultState.Type type)ParallelStateParallelState. withType(DefaultState.Type type)SleepStateSleepState. withType(DefaultState.Type type)SwitchStateSwitchState. withType(DefaultState.Type type)Constructors in io.serverlessworkflow.api.states with parameters of type DefaultState.Type Constructor Description CallbackState(String name, DefaultState.Type type)DefaultState(String name, DefaultState.Type type)EventState(String name, DefaultState.Type type)ForEachState(String name, DefaultState.Type type)InjectState(String name, DefaultState.Type type)OperationState(OperationState.ActionMode actionMode, List<Action> actions, String name, DefaultState.Type type)ParallelState(List<Branch> branches, String name, DefaultState.Type type)SleepState(String duration, String name, DefaultState.Type type)SwitchState(String name, DefaultState.Type type)
-