Enum Class StandardSettlementStyleEnum

java.lang.Object
java.lang.Enum<StandardSettlementStyleEnum>
net.finmath.smartcontract.product.xml.StandardSettlementStyleEnum
All Implemented Interfaces:
Serializable, Comparable<StandardSettlementStyleEnum>, Constable

public enum StandardSettlementStyleEnum extends Enum<StandardSettlementStyleEnum>

Java class for StandardSettlementStyleEnum.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="StandardSettlementStyleEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Standard"/>
     <enumeration value="Net"/>
     <enumeration value="StandardAndNet"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • STANDARD

      public static final StandardSettlementStyleEnum STANDARD
      This trade will settle using standard pre-determined funds settlement instructions.
    • NET

      public static final StandardSettlementStyleEnum NET
      This trade is a candidate for settlement netting.
    • STANDARD_AND_NET

      public static final StandardSettlementStyleEnum STANDARD_AND_NET
      This trade will settle using standard pre-determined funds settlement instructions and is a candidate for settlement netting.
  • Method Details

    • values

      public static StandardSettlementStyleEnum[] 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 StandardSettlementStyleEnum 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()
    • fromValue

      public static StandardSettlementStyleEnum fromValue(String v)