public enum ServiceUpdateCategory extends java.lang.Enum<ServiceUpdateCategory>
| Enum Constant and Description |
|---|
PLAN_FOR_CHANGE
plan For Change
|
PREVENT_OR_FIX_ISSUE
prevent Or Fix Issue
|
STAY_INFORMED
stay Informed
|
UNEXPECTED_VALUE
For ServiceUpdateCategory values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceUpdateCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceUpdateCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceUpdateCategory PREVENT_OR_FIX_ISSUE
public static final ServiceUpdateCategory PLAN_FOR_CHANGE
public static final ServiceUpdateCategory STAY_INFORMED
public static final ServiceUpdateCategory UNKNOWN_FUTURE_VALUE
public static final ServiceUpdateCategory UNEXPECTED_VALUE
public static ServiceUpdateCategory[] values()
for (ServiceUpdateCategory c : ServiceUpdateCategory.values()) System.out.println(c);
public static ServiceUpdateCategory 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