Enum Class TdMode

java.lang.Object
java.lang.Enum<TdMode>
xyz.felh.okx.v5.enumeration.ws.TdMode
All Implemented Interfaces:
Serializable, Comparable<TdMode>, Constable

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

    • ISOLATED

      public static final TdMode ISOLATED
      逐仓
    • CROSS

      public static final TdMode CROSS
      全仓
    • CASH

      public static final TdMode CASH
      现金
    • SPOT_ISOLATED

      public static final TdMode SPOT_ISOLATED
      现货逐仓(仅适用于现货带单) ,现货带单时,tdMode 的值需要指定为spot_isolated
  • Method Details

    • values

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

      public static TdMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String value()