Package org.isda.cdm

Enum ValuationMethodEnum

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

    public enum ValuationMethodEnum
    extends java.lang.Enum<ValuationMethodEnum>
    The enumerated values to specify the ISDA defined methodology for determining the final price of the reference obligation for purposes of cash settlement.
    Version:
    2.5.4
    • Enum Constant Detail

      • MARKET

        @RosettaSynonym(value="Market",source="FpML_5_10") @RosettaSynonym(value="Market",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Market",source="DTCC_11_0") @RosettaSynonym(value="Market",source="DTCC_9_0") @RosettaSynonym(value="Market",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum MARKET
      • HIGHEST

        @RosettaSynonym(value="Highest",source="FpML_5_10") @RosettaSynonym(value="Highest",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Highest",source="DTCC_11_0") @RosettaSynonym(value="Highest",source="DTCC_9_0") @RosettaSynonym(value="Highest",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum HIGHEST
      • AVERAGE_MARKET

        @RosettaSynonym(value="AverageMarket",source="FpML_5_10") @RosettaSynonym(value="AverageMarket",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AverageMarket",source="DTCC_11_0") @RosettaSynonym(value="AverageMarket",source="DTCC_9_0") @RosettaSynonym(value="AverageMarket",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum AVERAGE_MARKET
      • AVERAGE_HIGHEST

        @RosettaSynonym(value="AverageHighest",source="FpML_5_10") @RosettaSynonym(value="AverageHighest",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AverageHighest",source="DTCC_11_0") @RosettaSynonym(value="AverageHighest",source="DTCC_9_0") @RosettaSynonym(value="AverageHighest",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum AVERAGE_HIGHEST
      • BLENDED_MARKET

        @RosettaSynonym(value="BlendedMarket",source="FpML_5_10") @RosettaSynonym(value="BlendedMarket",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="BlendedMarket",source="DTCC_11_0") @RosettaSynonym(value="BlendedMarket",source="DTCC_9_0") @RosettaSynonym(value="BlendedMarket",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum BLENDED_MARKET
      • BLENDED_HIGHEST

        @RosettaSynonym(value="BlendedHighest",source="FpML_5_10") @RosettaSynonym(value="BlendedHighest",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="BlendedHighest",source="DTCC_11_0") @RosettaSynonym(value="BlendedHighest",source="DTCC_9_0") @RosettaSynonym(value="BlendedHighest",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum BLENDED_HIGHEST
      • AVERAGE_BLENDED_MARKET

        @RosettaSynonym(value="AverageBlendedMarket",source="FpML_5_10") @RosettaSynonym(value="AverageBlendedMarket",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AverageBlendedMarket",source="DTCC_11_0") @RosettaSynonym(value="AverageBlendedMarket",source="DTCC_9_0") @RosettaSynonym(value="AverageBlendedMarket",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum AVERAGE_BLENDED_MARKET
      • AVERAGE_BLENDED_HIGHEST

        @RosettaSynonym(value="AverageBlendedHighest",source="FpML_5_10") @RosettaSynonym(value="AverageBlendedHighest",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AverageBlendedHighest",source="DTCC_11_0") @RosettaSynonym(value="AverageBlendedHighest",source="DTCC_9_0") @RosettaSynonym(value="AverageBlendedHighest",source="CME_ClearedConfirm_1_17")
        public static final ValuationMethodEnum AVERAGE_BLENDED_HIGHEST
    • Method Detail

      • values

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

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