Package org.isda.cdm

Enum DiscountingTypeEnum

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

    public enum DiscountingTypeEnum
    extends java.lang.Enum<DiscountingTypeEnum>
    The enumerated values to specify the method of calculating discounted payment amounts. This enumerations combines the FpML DiscountingTypeEnum and FraDiscountingEnum enumerations.
    Version:
    2.5.4
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      AFMA
      As specified by the the Australian Financial Markets Association (AFMA) OTC Financial Product Conventions.
      FRA
      As specified by the 2006 ISDA Definitions, Section 8.4.
      FRA_YIELD
      As specified by the 2006 ISDA Definitions, Section 8.4.
      STANDARD
      As specified by the 2006 ISDA Definitions, Section 8.4.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      static DiscountingTypeEnum valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static DiscountingTypeEnum[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • STANDARD

        @RosettaSynonym(value="Standard",source="FpML_5_10") @RosettaSynonym(value="Standard",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Standard",source="DTCC_11_0") @RosettaSynonym(value="Standard",source="DTCC_9_0") @RosettaSynonym(value="Standard",source="CME_ClearedConfirm_1_17")
        public static final DiscountingTypeEnum STANDARD
        As specified by the 2006 ISDA Definitions, Section 8.4. Discounting, paragraph (a).
      • FRA

        @RosettaSynonym(value="FRA",source="FpML_5_10") @RosettaSynonym(value="FRA",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="FRA",source="DTCC_11_0") @RosettaSynonym(value="FRA",source="DTCC_9_0") @RosettaSynonym(value="FRA",source="CME_ClearedConfirm_1_17") @RosettaSynonym(value="ISDA",source="FpML_5_10") @RosettaSynonym(value="ISDA",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="ISDA",source="DTCC_11_0") @RosettaSynonym(value="ISDA",source="DTCC_9_0") @RosettaSynonym(value="ISDA",source="CME_ClearedConfirm_1_17")
        public static final DiscountingTypeEnum FRA
        As specified by the 2006 ISDA Definitions, Section 8.4. Discounting, paragraph (b).
      • FRA_YIELD

        @RosettaSynonym(value="FRAYield",source="FpML_5_10") @RosettaSynonym(value="FRAYield",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="FRAYield",source="DTCC_11_0") @RosettaSynonym(value="FRAYield",source="DTCC_9_0") @RosettaSynonym(value="FRAYield",source="CME_ClearedConfirm_1_17")
        public static final DiscountingTypeEnum FRA_YIELD
        As specified by the 2006 ISDA Definitions, Section 8.4. Discounting, paragraph (e).
      • AFMA

        @RosettaSynonym(value="AFMA",source="FpML_5_10") @RosettaSynonym(value="AFMA",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AFMA",source="DTCC_11_0") @RosettaSynonym(value="AFMA",source="DTCC_9_0") @RosettaSynonym(value="AFMA",source="CME_ClearedConfirm_1_17")
        public static final DiscountingTypeEnum AFMA
        As specified by the the Australian Financial Markets Association (AFMA) OTC Financial Product Conventions. This discounting method should not be used for a trade documented under a legal framework where the 2006 ISDA Definitions have been incorporated.
    • Method Detail

      • values

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

        public static DiscountingTypeEnum 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<DiscountingTypeEnum>