Enum GroupActionType
- java.lang.Object
-
- java.lang.Enum<GroupActionType>
-
- com.blackberry.workspaces.sdk.api.enums.GroupActionType
-
- All Implemented Interfaces:
Serializable
,Comparable<GroupActionType>
public enum GroupActionType extends Enum<GroupActionType>
An enum of values for group actions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_ENTITY
Add entityCREATE_GROUP
Create groupDELETE_GROUP
Delete groupEDIT_ACTIVE_DIR_DETAILS
Edit Active Directory detailsREMOVE_ENTITY
Remove entityRENAME_GROUP
Rename groupUSER_ADDED_TO_FOLDER
Added to folderUSER_ADDED_TO_ROOM
USER_REMOVED_FROM_FOLDER
Removed from folderUSER_REMOVED_FROM_ROOM
Removed form roomUSER_SET_MANAGER
User was set as group managerUSER_UNSET_MANAGER
User is no group manager anymore
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GroupActionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static GroupActionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_GROUP
public static final GroupActionType CREATE_GROUP
Create group
-
DELETE_GROUP
public static final GroupActionType DELETE_GROUP
Delete group
-
ADD_ENTITY
public static final GroupActionType ADD_ENTITY
Add entity
-
REMOVE_ENTITY
public static final GroupActionType REMOVE_ENTITY
Remove entity
-
RENAME_GROUP
public static final GroupActionType RENAME_GROUP
Rename group
-
EDIT_ACTIVE_DIR_DETAILS
public static final GroupActionType EDIT_ACTIVE_DIR_DETAILS
Edit Active Directory details
-
USER_ADDED_TO_ROOM
public static final GroupActionType USER_ADDED_TO_ROOM
-
USER_REMOVED_FROM_ROOM
public static final GroupActionType USER_REMOVED_FROM_ROOM
Removed form room
-
USER_ADDED_TO_FOLDER
public static final GroupActionType USER_ADDED_TO_FOLDER
Added to folder
-
USER_REMOVED_FROM_FOLDER
public static final GroupActionType USER_REMOVED_FROM_FOLDER
Removed from folder
-
USER_SET_MANAGER
public static final GroupActionType USER_SET_MANAGER
User was set as group manager
-
USER_UNSET_MANAGER
public static final GroupActionType USER_UNSET_MANAGER
User is no group manager anymore
-
-
Method Detail
-
values
public static GroupActionType[] 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 (GroupActionType c : GroupActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupActionType 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 nameNullPointerException
- if the argument is null
-
-