public enum ServiceComponentHostEventType extends Enum<ServiceComponentHostEventType>
Enum Constant and Description |
---|
HOST_SVCCOMP_DISABLE
Putting host component into disabled state
|
HOST_SVCCOMP_INSTALL
Triggering an install.
|
HOST_SVCCOMP_OP_FAILED
Operation failed.
|
HOST_SVCCOMP_OP_IN_PROGRESS
Operation in progress
|
HOST_SVCCOMP_OP_RESTART
Re-starting a failed operation.
|
HOST_SVCCOMP_OP_SUCCEEDED
Operation succeeded
|
HOST_SVCCOMP_RESTORE
Recovering host component from disable state
|
HOST_SVCCOMP_START
Triggering a start.
|
HOST_SVCCOMP_STARTED
Start completed.
|
HOST_SVCCOMP_STOP
Triggering a stop.
|
HOST_SVCCOMP_STOPPED
Stop completed.
|
HOST_SVCCOMP_UNINSTALL
Triggering an uninstall.
|
HOST_SVCCOMP_UPGRADE
Triggering a host component upgrade.
|
HOST_SVCCOMP_WIPEOUT
Triggering a wipe-out ( restore to clean state ).
|
Modifier and Type | Method and Description |
---|---|
static ServiceComponentHostEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceComponentHostEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceComponentHostEventType HOST_SVCCOMP_OP_IN_PROGRESS
public static final ServiceComponentHostEventType HOST_SVCCOMP_OP_SUCCEEDED
public static final ServiceComponentHostEventType HOST_SVCCOMP_OP_FAILED
public static final ServiceComponentHostEventType HOST_SVCCOMP_OP_RESTART
public static final ServiceComponentHostEventType HOST_SVCCOMP_INSTALL
public static final ServiceComponentHostEventType HOST_SVCCOMP_START
public static final ServiceComponentHostEventType HOST_SVCCOMP_STOP
public static final ServiceComponentHostEventType HOST_SVCCOMP_STARTED
public static final ServiceComponentHostEventType HOST_SVCCOMP_STOPPED
public static final ServiceComponentHostEventType HOST_SVCCOMP_UNINSTALL
public static final ServiceComponentHostEventType HOST_SVCCOMP_WIPEOUT
public static final ServiceComponentHostEventType HOST_SVCCOMP_UPGRADE
public static final ServiceComponentHostEventType HOST_SVCCOMP_DISABLE
public static final ServiceComponentHostEventType HOST_SVCCOMP_RESTORE
public static ServiceComponentHostEventType[] values()
for (ServiceComponentHostEventType c : ServiceComponentHostEventType.values()) System.out.println(c);
public static ServiceComponentHostEventType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2014. All rights reserved.