Enum GroupActionType
- All Implemented Interfaces:
Serializable
,Comparable<GroupActionType>
,java.lang.constant.Constable
public enum GroupActionType extends Enum<GroupActionType>
An enum of values for group actions
-
Nested Class Summary
-
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
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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
CREATE_GROUP
Create group -
DELETE_GROUP
Delete group -
ADD_ENTITY
Add entity -
REMOVE_ENTITY
Remove entity -
RENAME_GROUP
Rename group -
EDIT_ACTIVE_DIR_DETAILS
Edit Active Directory details -
USER_ADDED_TO_ROOM
-
USER_REMOVED_FROM_ROOM
Removed form room -
USER_ADDED_TO_FOLDER
Added to folder -
USER_REMOVED_FROM_FOLDER
Removed from folder -
USER_SET_MANAGER
User was set as group manager -
USER_UNSET_MANAGER
User is no group manager anymore
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-