net.opentsdb
public static enum BuildData.RepoStatus extends Enum<BuildData.RepoStatus>
Enum Constant and Description |
---|
MINT
There was no local modification during the build.
|
MODIFIED
There were some local modifications during the build.
|
UNKNOWN
The status of the repository was unknown at the time of the build.
|
Modifier and Type | Method and Description |
---|---|
static BuildData.RepoStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildData.RepoStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildData.RepoStatus UNKNOWN
public static final BuildData.RepoStatus MINT
public static final BuildData.RepoStatus MODIFIED
public static BuildData.RepoStatus[] values()
for (BuildData.RepoStatus c : BuildData.RepoStatus.values()) System.out.println(c);
public static BuildData.RepoStatus 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 null