org.rhq.enterprise.server.xmlschema.generated.serverplugin.perspective
Enum ResourcePermissionType

java.lang.Object
  extended by java.lang.Enum<ResourcePermissionType>
      extended by org.rhq.enterprise.server.xmlschema.generated.serverplugin.perspective.ResourcePermissionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResourcePermissionType>

public enum ResourcePermissionType
extends java.lang.Enum<ResourcePermissionType>

Java class for ResourcePermissionType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="ResourcePermissionType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="CONFIGURE"/>
     <enumeration value="CONTROL"/>
     <enumeration value="CREATE_CHILD_RESOURCE"/>
     <enumeration value="DELETE_RESOURCE"/>
     <enumeration value="MANAGE_ALERTS"/>
     <enumeration value="MANAGE_CONTENT"/>
     <enumeration value="MANAGE_MEASUREMENTS"/>
     <enumeration value="MODIFY_RESOURCE"/>
     <enumeration value="VIEW_RESOURCE"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CONFIGURE
           
CONTROL
           
CREATE_CHILD_RESOURCE
           
DELETE_RESOURCE
           
MANAGE_ALERTS
           
MANAGE_CONTENT
           
MANAGE_MEASUREMENTS
           
MODIFY_RESOURCE
           
VIEW_RESOURCE
           
 
Method Summary
static ResourcePermissionType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static ResourcePermissionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ResourcePermissionType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONFIGURE

public static final ResourcePermissionType CONFIGURE

CONTROL

public static final ResourcePermissionType CONTROL

CREATE_CHILD_RESOURCE

public static final ResourcePermissionType CREATE_CHILD_RESOURCE

DELETE_RESOURCE

public static final ResourcePermissionType DELETE_RESOURCE

MANAGE_ALERTS

public static final ResourcePermissionType MANAGE_ALERTS

MANAGE_CONTENT

public static final ResourcePermissionType MANAGE_CONTENT

MANAGE_MEASUREMENTS

public static final ResourcePermissionType MANAGE_MEASUREMENTS

MODIFY_RESOURCE

public static final ResourcePermissionType MODIFY_RESOURCE

VIEW_RESOURCE

public static final ResourcePermissionType VIEW_RESOURCE
Method Detail

values

public static ResourcePermissionType[] 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 (ResourcePermissionType c : ResourcePermissionType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ResourcePermissionType 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 name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static ResourcePermissionType fromValue(java.lang.String v)


Copyright © 2008-2009 Red Hat, Inc.. All Rights Reserved.