public static enum DFDeploymentStatus.Status extends Enum<DFDeploymentStatus.Status>
Note that ordering from worst to best simplifies comparisons among Status values.
| Enum Constant and Description |
|---|
FAILURE |
NOTINITIALIZED |
SUCCESS |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isWorseThan(DFDeploymentStatus.Status other) |
boolean |
isWorseThanOrEqual(DFDeploymentStatus.Status other) |
static DFDeploymentStatus.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DFDeploymentStatus.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DFDeploymentStatus.Status FAILURE
public static final DFDeploymentStatus.Status WARNING
public static final DFDeploymentStatus.Status SUCCESS
public static final DFDeploymentStatus.Status NOTINITIALIZED
public static DFDeploymentStatus.Status[] values()
for (DFDeploymentStatus.Status c : DFDeploymentStatus.Status.values()) System.out.println(c);
public static DFDeploymentStatus.Status 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 boolean isWorseThan(DFDeploymentStatus.Status other)
public boolean isWorseThanOrEqual(DFDeploymentStatus.Status other)
Copyright © 2017–2019 Eclipse Foundation. All rights reserved.