Enum Class CalculationAgentPartyEnum

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

public enum CalculationAgentPartyEnum extends Enum<CalculationAgentPartyEnum>

Java class for CalculationAgentPartyEnum.

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

 <simpleType name="CalculationAgentPartyEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="ExercisingParty"/>
     <enumeration value="NonExercisingParty"/>
     <enumeration value="AsSpecifiedInMasterAgreement"/>
     <enumeration value="AsSpecifiedInStandardTermsSupplement"/>
     <enumeration value="Both"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • EXERCISING_PARTY

      public static final CalculationAgentPartyEnum EXERCISING_PARTY
      The party that gives notice of exercise. Per 2000 ISDA Definitions, Section 11.1. Parties, paragraph (d).
    • NON_EXERCISING_PARTY

      public static final CalculationAgentPartyEnum NON_EXERCISING_PARTY
      The party that is given notice of exercise. Per 2000 ISDA Definitions, Section 11.1. Parties, paragraph (e).
    • AS_SPECIFIED_IN_MASTER_AGREEMENT

      public static final CalculationAgentPartyEnum AS_SPECIFIED_IN_MASTER_AGREEMENT
      The Calculation Agent is determined by reference to the relevant master agreement.
    • AS_SPECIFIED_IN_STANDARD_TERMS_SUPPLEMENT

      public static final CalculationAgentPartyEnum AS_SPECIFIED_IN_STANDARD_TERMS_SUPPLEMENT
      The Calculation Agent is determined by reference to the relevant standard terms supplement.
    • BOTH

      public static final CalculationAgentPartyEnum BOTH
      Both parties with joined rights to be a calculation agent.
  • Method Details

    • values

      public static CalculationAgentPartyEnum[] 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 CalculationAgentPartyEnum 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 CalculationAgentPartyEnum fromValue(String v)