Package com.morpheusdata.model
Enum Request.ApprovalRequestType
- java.lang.Object
-
- java.lang.Enum<Request.ApprovalRequestType>
-
- com.morpheusdata.model.Request.ApprovalRequestType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Request.ApprovalRequestType>
- Enclosing class:
- Request
public static enum Request.ApprovalRequestType extends java.lang.Enum<Request.ApprovalRequestType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Request.ApprovalRequestType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Request.ApprovalRequestType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXTENSION_APPROVAL_TYPE
public static final Request.ApprovalRequestType EXTENSION_APPROVAL_TYPE
-
INSTANCE_APPROVAL_TYPE
public static final Request.ApprovalRequestType INSTANCE_APPROVAL_TYPE
-
APP_APPROVAL_TYPE
public static final Request.ApprovalRequestType APP_APPROVAL_TYPE
-
SHUTDOWN_EXTENSION_APPROVAL_TYPE
public static final Request.ApprovalRequestType SHUTDOWN_EXTENSION_APPROVAL_TYPE
-
INSTANCE_DELETE_APPROVAL_TYPE
public static final Request.ApprovalRequestType INSTANCE_DELETE_APPROVAL_TYPE
-
APP_DELETE_APPROVAL_TYPE
public static final Request.ApprovalRequestType APP_DELETE_APPROVAL_TYPE
-
INSTANCE_RECONFIGURE_APPROVAL_TYPE
public static final Request.ApprovalRequestType INSTANCE_RECONFIGURE_APPROVAL_TYPE
-
SERVER_RECONFIGURE_APPROVAL_TYPE
public static final Request.ApprovalRequestType SERVER_RECONFIGURE_APPROVAL_TYPE
-
-
Method Detail
-
values
public static Request.ApprovalRequestType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Request.ApprovalRequestType c : Request.ApprovalRequestType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Request.ApprovalRequestType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-