Enum GroupActionType

    • Enum Constant Detail

      • CREATE_GROUP

        public static final GroupActionType CREATE_GROUP
        Create group
      • DELETE_GROUP

        public static final GroupActionType DELETE_GROUP
        Delete group
      • 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 name
        NullPointerException - if the argument is null