Enum GrantType

java.lang.Object
java.lang.Enum<GrantType>
org.knowm.xchange.deribit.v2.dto.GrantType
All Implemented Interfaces:
Serializable, Comparable<GrantType>, java.lang.constant.Constable

public enum GrantType extends Enum<GrantType>
  • Enum Constant Details

    • password

      public static final GrantType password
      using email and and password as when logging on to the website
    • client_credentials

      public static final GrantType client_credentials
      using the access key and access secret that can be found on the API page on the website
    • client_signature

      public static final GrantType 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

      public static final GrantType refresh_token
      using a refresh token that was received from an earlier invocation
  • Method Details

    • values

      public static GrantType[] 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

      public static GrantType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null