Enum ApiAppOauthScopeType
- java.lang.Object
-
- java.lang.Enum<ApiAppOauthScopeType>
-
- com.hellosign.sdk.resource.support.types.ApiAppOauthScopeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ApiAppOauthScopeType>
public enum ApiAppOauthScopeType extends java.lang.Enum<ApiAppOauthScopeType>
An enum of available OAuth scopes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description access_docsaccess_reusable_formsbasic_account_infomanage_docsrequest_signaturesend_docssignatures
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApiAppOauthScopeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ApiAppOauthScopeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
basic_account_info
public static final ApiAppOauthScopeType basic_account_info
-
request_signature
public static final ApiAppOauthScopeType request_signature
-
access_reusable_forms
public static final ApiAppOauthScopeType access_reusable_forms
-
manage_docs
public static final ApiAppOauthScopeType manage_docs
-
access_docs
public static final ApiAppOauthScopeType access_docs
-
send_docs
public static final ApiAppOauthScopeType send_docs
-
signatures
public static final ApiAppOauthScopeType signatures
-
-
Method Detail
-
values
public static ApiAppOauthScopeType[] 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 (ApiAppOauthScopeType c : ApiAppOauthScopeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApiAppOauthScopeType 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 namejava.lang.NullPointerException- if the argument is null
-
-