Package org.isda.cdm

Enum 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
    • 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.
      • 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

      • 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 name
        java.lang.NullPointerException - if the argument is null
      • toString

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