public static enum BuildCommand.BuildFailure extends Enum<BuildCommand.BuildFailure>
| Enum Constant and Description |
|---|
ImageAlreadyExists |
None |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static BuildCommand.BuildFailure |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildCommand.BuildFailure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildCommand.BuildFailure None
public static final BuildCommand.BuildFailure Unknown
public static final BuildCommand.BuildFailure ImageAlreadyExists
public static BuildCommand.BuildFailure[] values()
for (BuildCommand.BuildFailure c : BuildCommand.BuildFailure.values()) System.out.println(c);
public static BuildCommand.BuildFailure 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 © 2004-2016. All Rights Reserved.