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