Enum Class OAuthAppScope

java.lang.Object
java.lang.Enum<OAuthAppScope>
com.microsoft.graph.models.OAuthAppScope
All Implemented Interfaces:
Serializable, Comparable<OAuthAppScope>, Constable

public enum OAuthAppScope extends Enum<OAuthAppScope>
The Enum OAuth App Scope.
  • Enum Constant Details

    • UNKNOWN

      public static final OAuthAppScope UNKNOWN
      unknown
    • READ_CALENDAR

      public static final OAuthAppScope READ_CALENDAR
      read Calendar
    • READ_CONTACT

      public static final OAuthAppScope READ_CONTACT
      read Contact
    • READ_MAIL

      public static final OAuthAppScope READ_MAIL
      read Mail
    • READ_ALL_CHAT

      public static final OAuthAppScope READ_ALL_CHAT
      read All Chat
    • READ_ALL_FILE

      public static final OAuthAppScope READ_ALL_FILE
      read All File
    • READ_AND_WRITE_MAIL

      public static final OAuthAppScope READ_AND_WRITE_MAIL
      read And Write Mail
    • SEND_MAIL

      public static final OAuthAppScope SEND_MAIL
      send Mail
    • UNKNOWN_FUTURE_VALUE

      public static final OAuthAppScope UNKNOWN_FUTURE_VALUE
      unknown Future Value
    • UNEXPECTED_VALUE

      public static final OAuthAppScope UNEXPECTED_VALUE
      For OAuthAppScope values that were not expected from the service
  • Method Details

    • values

      public static OAuthAppScope[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OAuthAppScope valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null