public enum BuildImportStatus extends Enum<BuildImportStatus>
| Enum Constant and Description |
|---|
ERROR
setting up the import process failed
|
FAILED
some of the artifacts failed to import
|
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static BuildImportStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildImportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildImportStatus ERROR
public static final BuildImportStatus FAILED
public static final BuildImportStatus SUCCESSFUL
public static BuildImportStatus[] values()
for (BuildImportStatus c : BuildImportStatus.values()) System.out.println(c);
public static BuildImportStatus 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–2016. All rights reserved.