Enum EventCategory

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EventCategory>

    public enum EventCategory
    extends java.lang.Enum<EventCategory>
    Category of events in event audit log.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ADMIN_ALERTING
      Events that involve team related alerts.
      APPS
      Events that apply to management of linked apps.
      COMMENTS
      Events that have to do with comments on files and Paper documents.
      DATA_GOVERNANCE
      Events that involve data governance actions
      DEVICES
      Events that apply to linked devices on mobile, desktop and Web platforms.
      DOMAINS
      Events that involve domain management feature: domain verification, invite enforcement and account capture.
      FILE_OPERATIONS
      Events that have to do with filesystem operations on files and folders: copy, move, delete, etc.
      FILE_REQUESTS
      Events that apply to the file requests feature.
      GROUPS
      Events that involve group management.
      LOGINS
      Events that involve users signing in to or out of Dropbox.
      MEMBERS
      Events that involve team member management.
      OTHER
      Catch-all used for unknown tag values returned by the Dropbox servers.
      PAPER
      Events that apply to Dropbox Paper.
      PASSWORDS
      Events that involve using, changing or resetting passwords.
      REPORTS
      Events that concern generation of admin reports, including team activity and device usage.
      SHARING
      Events that apply to all types of sharing and collaboration.
      SHOWCASE
      Events that apply to Dropbox Showcase.
      SSO
      Events that involve using or configuring single sign-on as well as administrative policies concerning single sign-on.
      TEAM_FOLDERS
      Events that involve team folder management.
      TEAM_POLICIES
      Events that involve a change in team-wide policies.
      TEAM_PROFILE
      Events that involve a change in the team profile.
      TFA
      Events that involve using or configuring two factor authentication as well as administrative policies concerning two factor authentication.
      TRUSTED_TEAMS
      Events that apply to cross-team trust establishment.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static EventCategory valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static EventCategory[] 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

      • ADMIN_ALERTING

        public static final EventCategory ADMIN_ALERTING
        Events that involve team related alerts.
      • APPS

        public static final EventCategory APPS
        Events that apply to management of linked apps.
      • COMMENTS

        public static final EventCategory COMMENTS
        Events that have to do with comments on files and Paper documents.
      • DATA_GOVERNANCE

        public static final EventCategory DATA_GOVERNANCE
        Events that involve data governance actions
      • DEVICES

        public static final EventCategory DEVICES
        Events that apply to linked devices on mobile, desktop and Web platforms.
      • DOMAINS

        public static final EventCategory DOMAINS
        Events that involve domain management feature: domain verification, invite enforcement and account capture.
      • FILE_OPERATIONS

        public static final EventCategory FILE_OPERATIONS
        Events that have to do with filesystem operations on files and folders: copy, move, delete, etc.
      • FILE_REQUESTS

        public static final EventCategory FILE_REQUESTS
        Events that apply to the file requests feature.
      • GROUPS

        public static final EventCategory GROUPS
        Events that involve group management.
      • LOGINS

        public static final EventCategory LOGINS
        Events that involve users signing in to or out of Dropbox.
      • MEMBERS

        public static final EventCategory MEMBERS
        Events that involve team member management.
      • PAPER

        public static final EventCategory PAPER
        Events that apply to Dropbox Paper.
      • PASSWORDS

        public static final EventCategory PASSWORDS
        Events that involve using, changing or resetting passwords.
      • REPORTS

        public static final EventCategory REPORTS
        Events that concern generation of admin reports, including team activity and device usage.
      • SHARING

        public static final EventCategory SHARING
        Events that apply to all types of sharing and collaboration.
      • SHOWCASE

        public static final EventCategory SHOWCASE
        Events that apply to Dropbox Showcase.
      • SSO

        public static final EventCategory SSO
        Events that involve using or configuring single sign-on as well as administrative policies concerning single sign-on.
      • TEAM_FOLDERS

        public static final EventCategory TEAM_FOLDERS
        Events that involve team folder management.
      • TEAM_POLICIES

        public static final EventCategory TEAM_POLICIES
        Events that involve a change in team-wide policies.
      • TEAM_PROFILE

        public static final EventCategory TEAM_PROFILE
        Events that involve a change in the team profile.
      • TFA

        public static final EventCategory TFA
        Events that involve using or configuring two factor authentication as well as administrative policies concerning two factor authentication.
      • TRUSTED_TEAMS

        public static final EventCategory TRUSTED_TEAMS
        Events that apply to cross-team trust establishment.
      • OTHER

        public static final EventCategory OTHER
        Catch-all used for unknown tag values returned by the Dropbox servers.

        Receiving a catch-all value typically indicates this SDK version is not up to date. Consider updating your SDK version to handle the new tags.

    • Method Detail

      • values

        public static EventCategory[] 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 (EventCategory c : EventCategory.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EventCategory 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