public enum ServiceOperationalStatus extends Enum<ServiceOperationalStatus> implements Serializable
| Enum Constant and Description |
|---|
DISABLED |
ENABLED |
NOT_IMPLEMENTED |
| Modifier and Type | Method and Description |
|---|---|
int |
getTypeCode()
Return the code for this enum instance
|
String |
getTypeDescription()
Return the default description for the type for this enum instance.
|
String |
getTypeName()
Return the default name for this enum instance.
|
static ServiceOperationalStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceOperationalStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceOperationalStatus NOT_IMPLEMENTED
public static final ServiceOperationalStatus ENABLED
public static final ServiceOperationalStatus DISABLED
public static ServiceOperationalStatus[] values()
for (ServiceOperationalStatus c : ServiceOperationalStatus.values()) System.out.println(c);
public static ServiceOperationalStatus 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 int getTypeCode()
public String getTypeName()
public String getTypeDescription()
Copyright © 2018–2020 ODPi. All rights reserved.