Uses of Enum Class
de.iip_ecosphere.platform.ecsRuntime.ContainerState
Packages that use ContainerState
Package
Description
Interfaces and basic implementation of the ECS runtime.
-
Uses of ContainerState in de.iip_ecosphere.platform.ecsRuntime
Fields in de.iip_ecosphere.platform.ecsRuntime declared as ContainerStateFields in de.iip_ecosphere.platform.ecsRuntime with type parameters of type ContainerStateModifier and TypeFieldDescriptionprivate static Map<ContainerState, Set<ContainerState>> ContainerState.validTransitionsprivate static Map<ContainerState, Set<ContainerState>> ContainerState.validTransitionsMethods in de.iip_ecosphere.platform.ecsRuntime that return ContainerStateModifier and TypeMethodDescriptionBasicContainerDescriptor.getState()ContainerDescriptor.getState()Returns the state the container is currently in.Returns the state of the container.static ContainerStateReturns the enum constant of this class with the specified name.static ContainerState[]ContainerState.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in de.iip_ecosphere.platform.ecsRuntime with parameters of type ContainerStateModifier and TypeMethodDescriptionprivate static voidContainerState.addValidTransition(ContainerState source, ContainerState... targets) Adds a valid transition.booleanContainerState.isValidTransition(ContainerState target) Returns whether a transition from this state totargetis valid.protected voidAbstractContainerManager.setState(BasicContainerDescriptor container, ContainerState state) Changes the container state and notifiesEcsAas.voidBasicContainerDescriptor.setState(ContainerState state) Changes the container state.static voidContainerState.validateTransition(ContainerState source, ContainerState target) Validates a container state transition and throws an exception if the transition is invalid.