Enum OrderPlacementType

java.lang.Object
java.lang.Enum<OrderPlacementType>
org.knowm.xchange.okcoin.v3.dto.trade.OrderPlacementType
All Implemented Interfaces:
Serializable, Comparable<OrderPlacementType>, java.lang.constant.Constable

public enum OrderPlacementType extends Enum<OrderPlacementType>
optional Fill in number for parameter, 0: Normal limit order (Unfilled and 0 represent normal limit order) 1: Post only 2: Fill Or Kill 3: Immediatel Or Cancel
  • Enum Constant Details

  • Method Details

    • values

      public static OrderPlacementType[] 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 OrderPlacementType 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
    • getValue

      public String getValue()
    • forValue

      public static OrderPlacementType forValue(String value)