public enum WebLogicDeploymentStatus extends Enum<WebLogicDeploymentStatus>
| Enum Constant and Description |
|---|
ABORTED |
DISABLED |
FAILED |
SUCCEEDED |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static WebLogicDeploymentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebLogicDeploymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebLogicDeploymentStatus UNKNOWN
public static final WebLogicDeploymentStatus DISABLED
public static final WebLogicDeploymentStatus ABORTED
public static final WebLogicDeploymentStatus FAILED
public static final WebLogicDeploymentStatus SUCCEEDED
public static WebLogicDeploymentStatus[] values()
for (WebLogicDeploymentStatus c : WebLogicDeploymentStatus.values()) System.out.println(c);
public static WebLogicDeploymentStatus 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 int getValue()
Copyright © 2016–2017. All rights reserved.