public enum ServiceHealthOrigin extends java.lang.Enum<ServiceHealthOrigin>
| Enum Constant and Description |
|---|
CUSTOMER
customer
|
MICROSOFT
microsoft
|
THIRD_PARTY
third Party
|
UNEXPECTED_VALUE
For ServiceHealthOrigin values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceHealthOrigin |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceHealthOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceHealthOrigin MICROSOFT
public static final ServiceHealthOrigin THIRD_PARTY
public static final ServiceHealthOrigin CUSTOMER
public static final ServiceHealthOrigin UNKNOWN_FUTURE_VALUE
public static final ServiceHealthOrigin UNEXPECTED_VALUE
public static ServiceHealthOrigin[] values()
for (ServiceHealthOrigin c : ServiceHealthOrigin.values()) System.out.println(c);
public static ServiceHealthOrigin valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null