Package org.knowm.xchange.deribit.v2.dto
Enum GrantType
- All Implemented Interfaces:
Serializable
,Comparable<GrantType>
,java.lang.constant.Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionusing the access key and access secret that can be found on the API page on the websiteusing the access key that can be found on the API page on the website and user generated signature.using email and and password as when logging on to the websiteusing a refresh token that was received from an earlier invocation -
Method Summary
-
Enum Constant Details
-
password
using email and and password as when logging on to the website -
client_credentials
using the access key and access secret that can be found on the API page on the website -
client_signature
using the access key that can be found on the API page on the website and user generated signature. The signature is calculated using some fields provided in the request, using formula described here https://docs.deribit.com/v2/#authentication -
refresh_token
using a refresh token that was received from an earlier invocation
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-