Uses of Class
org.jboss.msc.service.ServiceController.Mode
-
Packages that use ServiceController.Mode Package Description org.jboss.msc.service The service container implementation itself. -
-
Uses of ServiceController.Mode in org.jboss.msc.service
Methods in org.jboss.msc.service that return ServiceController.Mode Modifier and Type Method Description ServiceController.Mode
DelegatingServiceController. getMode()
Get the service controller's current mode.ServiceController.Mode
ServiceController. getMode()
Get the service controller's current mode.static ServiceController.Mode
ServiceController.Mode. valueOf(String name)
Returns the enum constant of this type with the specified name.static ServiceController.Mode[]
ServiceController.Mode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.msc.service with parameters of type ServiceController.Mode Modifier and Type Method Description boolean
DelegatingServiceController. compareAndSetMode(ServiceController.Mode expected, ServiceController.Mode newMode)
Compare the current mode againstexpected
; if it matches, change it tonewMode
.boolean
ServiceController. compareAndSetMode(ServiceController.Mode expected, ServiceController.Mode newMode)
Compare the current mode againstexpected
; if it matches, change it tonewMode
.boolean
ServiceController.Mode. in(ServiceController.Mode... modes)
Determine if this mode is one of the given modes.ServiceBuilder<T>
DelegatingServiceBuilder. setInitialMode(ServiceController.Mode mode)
Sets initial service mode.ServiceBuilder<T>
ServiceBuilder. setInitialMode(ServiceController.Mode mode)
Sets initial service mode.void
DelegatingServiceController. setMode(ServiceController.Mode mode)
Change the service controller's current mode.void
ServiceController. setMode(ServiceController.Mode mode)
Change the service controller's current mode.
-