Package org.isda.cdm

Enum LegalAgreementNameEnum

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

    public enum LegalAgreementNameEnum
    extends java.lang.Enum<LegalAgreementNameEnum>
    The enumerated values to specify the legal agreement name.
    Version:
    2.5.4
    • Enum Constant Detail

      • CREDIT_SUPPORT_DEED

        @RosettaSynonym(value="Credit Support Deed",
                        source="ISDA_Create_1_0")
        public static final LegalAgreementNameEnum CREDIT_SUPPORT_DEED
        A Credit Support Deed legal agreement.
      • CREDIT_SUPPORT_ANNEX

        @RosettaSynonym(value="CreditSupportAnnex",source="FpML_5_10") @RosettaSynonym(value="CSA",source="AcadiaSoft_AM_1_0") @RosettaSynonym(value="Credit Support Annex",source="ISDA_Create_1_0")
        public static final LegalAgreementNameEnum CREDIT_SUPPORT_ANNEX
        A Credit Support Annex legal agreement.
      • MASTER_AGREEMENT

        @RosettaSynonym(value="MasterAgreement",
                        source="FpML_5_10")
        public static final LegalAgreementNameEnum MASTER_AGREEMENT
        A Master Agreement.
      • STANDARD_CREDIT_SUPPORT_ANNEX

        @RosettaSynonym(value="StandardCreditSupportAnnex",
                        source="FpML_5_10")
        public static final LegalAgreementNameEnum STANDARD_CREDIT_SUPPORT_ANNEX
        An Standard Credit Support Annex.
    • Method Detail

      • values

        public static LegalAgreementNameEnum[] 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 (LegalAgreementNameEnum c : LegalAgreementNameEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LegalAgreementNameEnum 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
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<LegalAgreementNameEnum>