public static enum HostDeregisterResponse.Status extends Enum<HostDeregisterResponse.Status>
| Enum Constant and Description |
|---|
JOBS_STILL_DEPLOYED |
NOT_FOUND |
OK |
| Modifier and Type | Method and Description |
|---|---|
static HostDeregisterResponse.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostDeregisterResponse.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostDeregisterResponse.Status OK
public static final HostDeregisterResponse.Status NOT_FOUND
public static final HostDeregisterResponse.Status JOBS_STILL_DEPLOYED
public static HostDeregisterResponse.Status[] values()
for (HostDeregisterResponse.Status c : HostDeregisterResponse.Status.values()) System.out.println(c);
public static HostDeregisterResponse.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 nullCopyright © 2019. All rights reserved.