Package com.hellosign.openapi.model
Enum SubOAuth.ScopesEnum
- java.lang.Object
-
- java.lang.Enum<SubOAuth.ScopesEnum>
-
- com.hellosign.openapi.model.SubOAuth.ScopesEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SubOAuth.ScopesEnum>
- Enclosing class:
- SubOAuth
public static enum SubOAuth.ScopesEnum extends java.lang.Enum<SubOAuth.ScopesEnum>
Gets or Sets scopes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_ACCESS
API_APP_ACCESS
BASIC_ACCOUNT_INFO
EMPTY
REQUEST_SIGNATURE
SIGNATURE_REQUEST_ACCESS
TEAM_ACCESS
TEMPLATE_ACCESS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubOAuth.ScopesEnum
fromValue(java.lang.String value)
java.lang.String
getValue()
java.lang.String
toString()
static SubOAuth.ScopesEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SubOAuth.ScopesEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUEST_SIGNATURE
public static final SubOAuth.ScopesEnum REQUEST_SIGNATURE
-
BASIC_ACCOUNT_INFO
public static final SubOAuth.ScopesEnum BASIC_ACCOUNT_INFO
-
ACCOUNT_ACCESS
public static final SubOAuth.ScopesEnum ACCOUNT_ACCESS
-
SIGNATURE_REQUEST_ACCESS
public static final SubOAuth.ScopesEnum SIGNATURE_REQUEST_ACCESS
-
TEMPLATE_ACCESS
public static final SubOAuth.ScopesEnum TEMPLATE_ACCESS
-
TEAM_ACCESS
public static final SubOAuth.ScopesEnum TEAM_ACCESS
-
API_APP_ACCESS
public static final SubOAuth.ScopesEnum API_APP_ACCESS
-
EMPTY
public static final SubOAuth.ScopesEnum EMPTY
-
-
Method Detail
-
values
public static SubOAuth.ScopesEnum[] 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 (SubOAuth.ScopesEnum c : SubOAuth.ScopesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubOAuth.ScopesEnum 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
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<SubOAuth.ScopesEnum>
-
fromValue
public static SubOAuth.ScopesEnum fromValue(java.lang.String value)
-
-