Package org.isda.cdm
Enum QuotationRateTypeEnum
- java.lang.Object
-
- java.lang.Enum<QuotationRateTypeEnum>
-
- org.isda.cdm.QuotationRateTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<QuotationRateTypeEnum>
public enum QuotationRateTypeEnum extends java.lang.Enum<QuotationRateTypeEnum>
The enumerated values to specify the type of quotation rate to be obtained from each cash settlement reference bank.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASK
An ask rate.BID
A bid rate.EXERCISING_PARTY_PAYS
If optional early termination is applicable to a swap transaction, the rate, which may be a bid or ask rate, which would result, if seller is in-the-money, in the higher absolute value of the cash settlement amount, or, is seller is out-of-the-money, in the lower absolute value of the cash settlement amount.MID
A mid-market rate.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static QuotationRateTypeEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static QuotationRateTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BID
@RosettaSynonym(value="Bid",source="FpML_5_10") @RosettaSynonym(value="Bid",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Bid",source="DTCC_11_0") @RosettaSynonym(value="Bid",source="DTCC_9_0") @RosettaSynonym(value="Bid",source="CME_ClearedConfirm_1_17") public static final QuotationRateTypeEnum BID
A bid rate.
-
ASK
@RosettaSynonym(value="Ask",source="FpML_5_10") @RosettaSynonym(value="Ask",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Ask",source="DTCC_11_0") @RosettaSynonym(value="Ask",source="DTCC_9_0") @RosettaSynonym(value="Ask",source="CME_ClearedConfirm_1_17") public static final QuotationRateTypeEnum ASK
An ask rate.
-
MID
@RosettaSynonym(value="Mid",source="FpML_5_10") @RosettaSynonym(value="Mid",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Mid",source="DTCC_11_0") @RosettaSynonym(value="Mid",source="DTCC_9_0") @RosettaSynonym(value="Mid",source="CME_ClearedConfirm_1_17") public static final QuotationRateTypeEnum MID
A mid-market rate.
-
EXERCISING_PARTY_PAYS
@RosettaSynonym(value="ExercisingPartyPays",source="FpML_5_10") @RosettaSynonym(value="ExercisingPartyPays",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="ExercisingPartyPays",source="DTCC_11_0") @RosettaSynonym(value="ExercisingPartyPays",source="DTCC_9_0") @RosettaSynonym(value="ExercisingPartyPays",source="CME_ClearedConfirm_1_17") public static final QuotationRateTypeEnum EXERCISING_PARTY_PAYS
If optional early termination is applicable to a swap transaction, the rate, which may be a bid or ask rate, which would result, if seller is in-the-money, in the higher absolute value of the cash settlement amount, or, is seller is out-of-the-money, in the lower absolute value of the cash settlement amount.
-
-
Method Detail
-
values
public static QuotationRateTypeEnum[] 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 (QuotationRateTypeEnum c : QuotationRateTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuotationRateTypeEnum 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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<QuotationRateTypeEnum>
-
-