Package com.morpheusdata.model
Enum Permission.ResourceType
- java.lang.Object
-
- java.lang.Enum<Permission.ResourceType>
-
- com.morpheusdata.model.Permission.ResourceType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Permission.ResourceType>
- Enclosing class:
- Permission
public static enum Permission.ResourceType extends java.lang.Enum<Permission.ResourceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ComputeZoneFolder
ComputeZonePool
Datastore
Network
NetworkDomain
NetworkEdgeCluster
NetworkGroup
NetworkLoadBalancer
NetworkPool
NetworkResourceGroup
NetworkRouter
NetworkScope
NetworkServer
NetworkSubnet
PricePlan
SecurityGroup
ServicePlan
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Permission.ResourceType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Permission.ResourceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ComputeZoneFolder
public static final Permission.ResourceType ComputeZoneFolder
-
ComputeZonePool
public static final Permission.ResourceType ComputeZonePool
-
Datastore
public static final Permission.ResourceType Datastore
-
Network
public static final Permission.ResourceType Network
-
NetworkDomain
public static final Permission.ResourceType NetworkDomain
-
NetworkEdgeCluster
public static final Permission.ResourceType NetworkEdgeCluster
-
NetworkGroup
public static final Permission.ResourceType NetworkGroup
-
NetworkLoadBalancer
public static final Permission.ResourceType NetworkLoadBalancer
-
NetworkPool
public static final Permission.ResourceType NetworkPool
-
NetworkResourceGroup
public static final Permission.ResourceType NetworkResourceGroup
-
NetworkRouter
public static final Permission.ResourceType NetworkRouter
-
NetworkScope
public static final Permission.ResourceType NetworkScope
-
NetworkServer
public static final Permission.ResourceType NetworkServer
-
NetworkSubnet
public static final Permission.ResourceType NetworkSubnet
-
PricePlan
public static final Permission.ResourceType PricePlan
-
SecurityGroup
public static final Permission.ResourceType SecurityGroup
-
ServicePlan
public static final Permission.ResourceType ServicePlan
-
-
Method Detail
-
values
public static Permission.ResourceType[] 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 (Permission.ResourceType c : Permission.ResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Permission.ResourceType 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
-
-