public enum AgentInstallFailedReason extends Enum<AgentInstallFailedReason>
Java class for AgentInstallFailedReason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AgentInstallFailedReason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NotEnoughSpaceOnDevice"/>
<enumeration value="PrepareToUpgradeFailed"/>
<enumeration value="AgentNotRunning"/>
<enumeration value="AgentNotReachable"/>
<enumeration value="InstallTimedout"/>
<enumeration value="SignatureVerificationFailed"/>
<enumeration value="AgentUploadFailed"/>
<enumeration value="AgentUploadTimedout"/>
<enumeration value="UnknownInstallerError"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AGENT_NOT_REACHABLE |
AGENT_NOT_RUNNING |
AGENT_UPLOAD_FAILED |
AGENT_UPLOAD_TIMEDOUT |
INSTALL_TIMEDOUT |
NOT_ENOUGH_SPACE_ON_DEVICE |
PREPARE_TO_UPGRADE_FAILED |
SIGNATURE_VERIFICATION_FAILED |
UNKNOWN_INSTALLER_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static AgentInstallFailedReason |
fromValue(String v) |
String |
value() |
static AgentInstallFailedReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentInstallFailedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentInstallFailedReason NOT_ENOUGH_SPACE_ON_DEVICE
public static final AgentInstallFailedReason PREPARE_TO_UPGRADE_FAILED
public static final AgentInstallFailedReason AGENT_NOT_RUNNING
public static final AgentInstallFailedReason AGENT_NOT_REACHABLE
public static final AgentInstallFailedReason INSTALL_TIMEDOUT
public static final AgentInstallFailedReason SIGNATURE_VERIFICATION_FAILED
public static final AgentInstallFailedReason AGENT_UPLOAD_FAILED
public static final AgentInstallFailedReason AGENT_UPLOAD_TIMEDOUT
public static final AgentInstallFailedReason UNKNOWN_INSTALLER_ERROR
public static AgentInstallFailedReason[] values()
for (AgentInstallFailedReason c : AgentInstallFailedReason.values()) System.out.println(c);
public static AgentInstallFailedReason 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 nullpublic String value()
public static AgentInstallFailedReason fromValue(String v)
Copyright © 2018. All rights reserved.