Package com.microsoft.graph.models
Enum Class OAuthAppScope
- All Implemented Interfaces:
Serializable,Comparable<OAuthAppScope>,Constable
The Enum OAuth App Scope.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionread All Chatread All Fileread And Write Mailread Calendarread Contactread Mailsend MailFor OAuthAppScope values that were not expected from the serviceunknownunknown Future Value -
Method Summary
Modifier and TypeMethodDescriptionstatic OAuthAppScopeReturns the enum constant of this class with the specified name.static OAuthAppScope[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
unknown -
READ_CALENDAR
read Calendar -
READ_CONTACT
read Contact -
READ_MAIL
read Mail -
READ_ALL_CHAT
read All Chat -
READ_ALL_FILE
read All File -
READ_AND_WRITE_MAIL
read And Write Mail -
SEND_MAIL
send Mail -
UNKNOWN_FUTURE_VALUE
unknown Future Value -
UNEXPECTED_VALUE
For OAuthAppScope values that were not expected from the service
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-