public enum HealthInfoState extends Enum<HealthInfoState>
| Enum Constant and Description |
|---|
OUT_OF_SERVICE |
UP |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response.Status |
asHTTPStatus() |
static HealthInfoState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HealthInfoState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HealthInfoState UP
public static final HealthInfoState OUT_OF_SERVICE
public static HealthInfoState[] values()
for (HealthInfoState c : HealthInfoState.values()) System.out.println(c);
public static HealthInfoState 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 javax.ws.rs.core.Response.Status asHTTPStatus()
Copyright © 2022. All rights reserved.