Package org.isda.cdm
Enum TransferSettlementEnum
- java.lang.Object
-
- java.lang.Enum<TransferSettlementEnum>
-
- org.isda.cdm.TransferSettlementEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TransferSettlementEnum>
public enum TransferSettlementEnum extends java.lang.Enum<TransferSettlementEnum>
The enumeration values to specify how the transfer will settle, e.g. DvP.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELIVERY_VERSUS_DELIVERY
Simultaneous transfer of two assets, typically securities, as a way to avoid settlement risk.DELIVERY_VERSUS_PAYMENT
Settlement in which the transfer of the asset and the cash settlement are simultaneous.NOT_CENTRAL_SETTLEMENT
No central settlement.PAYMENT_VERSUS_PAYMENT
Simultaneous transfer of cashflows.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static TransferSettlementEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TransferSettlementEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELIVERY_VERSUS_DELIVERY
@RosettaSynonym(value="DeliveryVersusDelivery", source="Rosetta_Workbench") public static final TransferSettlementEnum DELIVERY_VERSUS_DELIVERY
Simultaneous transfer of two assets, typically securities, as a way to avoid settlement risk.
-
DELIVERY_VERSUS_PAYMENT
@RosettaSynonym(value="DeliveryVersusPayment", source="Rosetta_Workbench") public static final TransferSettlementEnum DELIVERY_VERSUS_PAYMENT
Settlement in which the transfer of the asset and the cash settlement are simultaneous.
-
PAYMENT_VERSUS_PAYMENT
@RosettaSynonym(value="PaymentVersusPayment",source="Rosetta_Workbench") @RosettaSynonym(value="CentralSettlement",source="DTCC_11_0") @RosettaSynonym(value="CentralSettlement",source="DTCC_9_0") public static final TransferSettlementEnum PAYMENT_VERSUS_PAYMENT
Simultaneous transfer of cashflows.
-
NOT_CENTRAL_SETTLEMENT
@RosettaSynonym(value="NotCentralSettlement",source="DTCC_11_0") @RosettaSynonym(value="NotCentralSettlement",source="DTCC_9_0") public static final TransferSettlementEnum NOT_CENTRAL_SETTLEMENT
No central settlement.
-
-
Method Detail
-
values
public static TransferSettlementEnum[] 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 (TransferSettlementEnum c : TransferSettlementEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransferSettlementEnum 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<TransferSettlementEnum>
-
-