Package org.isda.cdm

Enum CalculationAgentPartyEnum

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CalculationAgentPartyEnum>

    public enum CalculationAgentPartyEnum
    extends java.lang.Enum<CalculationAgentPartyEnum>
    The enumerated values to specify how a calculation agent will be determined.
    Version:
    2.5.4
    • Enum Constant Detail

      • EXERCISING_PARTY

        @RosettaSynonym(value="ExercisingParty",source="FpML_5_10") @RosettaSynonym(value="ExercisingParty",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="ExercisingParty",source="DTCC_11_0") @RosettaSynonym(value="ExercisingParty",source="DTCC_9_0") @RosettaSynonym(value="ExercisingParty",source="CME_ClearedConfirm_1_17")
        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

        @RosettaSynonym(value="NonExercisingParty",source="FpML_5_10") @RosettaSynonym(value="NonExercisingParty",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="NonExercisingParty",source="DTCC_11_0") @RosettaSynonym(value="NonExercisingParty",source="DTCC_9_0") @RosettaSynonym(value="NonExercisingParty",source="CME_ClearedConfirm_1_17")
        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

        @RosettaSynonym(value="AsSpecifiedInMasterAgreement",source="FpML_5_10") @RosettaSynonym(value="AsSpecifiedInMasterAgreement",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AsSpecifiedInMasterAgreement",source="DTCC_11_0") @RosettaSynonym(value="AsSpecifiedInMasterAgreement",source="DTCC_9_0") @RosettaSynonym(value="AsSpecifiedInMasterAgreement",source="CME_ClearedConfirm_1_17")
        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

        @RosettaSynonym(value="AsSpecifiedInStandardTermsSupplement",source="FpML_5_10") @RosettaSynonym(value="AsSpecifiedInStandardTermsSupplement",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AsSpecifiedInStandardTermsSupplement",source="DTCC_11_0") @RosettaSynonym(value="AsSpecifiedInStandardTermsSupplement",source="DTCC_9_0") @RosettaSynonym(value="AsSpecifiedInStandardTermsSupplement",source="CME_ClearedConfirm_1_17")
        public static final CalculationAgentPartyEnum AS_SPECIFIED_IN_STANDARD_TERMS_SUPPLEMENT
        The Calculation Agent is determined by reference to the relevant standard terms supplement.
      • BOTH

        @RosettaSynonym(value="Both",source="FpML_5_10") @RosettaSynonym(value="Both",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Both",source="DTCC_11_0") @RosettaSynonym(value="Both",source="DTCC_9_0") @RosettaSynonym(value="Both",source="CME_ClearedConfirm_1_17")
        public static final CalculationAgentPartyEnum BOTH
        Both parties with joined rights to be a calculation agent.
    • Method Detail

      • values

        public static CalculationAgentPartyEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CalculationAgentPartyEnum c : CalculationAgentPartyEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CalculationAgentPartyEnum valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null