Enum Class Enums.EntryState

java.lang.Object
java.lang.Enum<Enums.EntryState>
com.motivewave.platform.sdk.common.Enums.EntryState
All Implemented Interfaces:
Serializable, Comparable<Enums.EntryState>, Constable
Enclosing interface:
Enums

public static enum Enums.EntryState extends Enum<Enums.EntryState>
Describes the entry status of a strategy. This is intended to be used with manual and semi-automatic strategies only.
  • Enum Constant Details

    • NONE

      public static final Enums.EntryState NONE
      No entry state, waiting for a signal to begin the entry process.
    • PRE_ENTRY

      public static final Enums.EntryState PRE_ENTRY
      Pre-Entry State. Waiting to place an order to enter a position.
    • WAITING_ENTRY

      public static final Enums.EntryState WAITING_ENTRY
      Order has been placed to open a position, waiting for order to be filled.
    • OPEN

      public static final Enums.EntryState OPEN
      Strategy has an open position.
  • Method Details

    • values

      public static Enums.EntryState[] 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 Enums.EntryState 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