Enum Class LegAction.LegActionType

java.lang.Object
java.lang.Enum<LegAction.LegActionType>
com.caplin.trading.LegAction.LegActionType
All Implemented Interfaces:
Serializable, Comparable<LegAction.LegActionType>, Constable
Enclosing interface:
LegAction

public static enum LegAction.LegActionType extends Enum<LegAction.LegActionType>
An enumeration of possible actions that can be performed on a leg.
  • Enum Constant Details

    • ADD

      public static final LegAction.LegActionType ADD
      Value that represents a leg being added to a trade.
    • REMOVE

      public static final LegAction.LegActionType REMOVE
      Value that represents a leg being removed from a trade.
    • UPDATE

      public static final LegAction.LegActionType UPDATE
      Value that represents the state of an existing leg being changed, such as an update to the value of one or more leg fields.
  • Method Details

    • values

      public static LegAction.LegActionType[] 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 LegAction.LegActionType 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