com.atlassian.confluence.it
Enum GlobalPermission

java.lang.Object
  extended by java.lang.Enum<GlobalPermission>
      extended by com.atlassian.confluence.it.GlobalPermission
All Implemented Interfaces:
Serializable, Comparable<GlobalPermission>

public enum GlobalPermission
extends Enum<GlobalPermission>


Enum Constant Summary
CAN_USE
           
CAN_VIEW_USER_PROFILES
          This only applies to Anonymous users.
CONFLUENCE_ADMIN
           
CREATE_SPACE
           
PERSONAL_SPACE
           
SYSTEM_ADMIN
           
UPDATE_STATUS
           
 
Method Summary
 String getValue()
           
 String toCheckboxName(Entity entity)
           
static GlobalPermission valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GlobalPermission[] 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

CAN_USE

public static final GlobalPermission CAN_USE

CAN_VIEW_USER_PROFILES

public static final GlobalPermission CAN_VIEW_USER_PROFILES
This only applies to Anonymous users.


CONFLUENCE_ADMIN

public static final GlobalPermission CONFLUENCE_ADMIN

SYSTEM_ADMIN

public static final GlobalPermission SYSTEM_ADMIN

CREATE_SPACE

public static final GlobalPermission CREATE_SPACE

UPDATE_STATUS

public static final GlobalPermission UPDATE_STATUS

PERSONAL_SPACE

public static final GlobalPermission PERSONAL_SPACE
Method Detail

values

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

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

valueOf

public static GlobalPermission valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()

toCheckboxName

public String toCheckboxName(Entity entity)


Copyright © 2003-2011 Atlassian. All Rights Reserved.