Package org.isda.cdm
Enum DeliveryMethodEnum
- java.lang.Object
-
- java.lang.Enum<DeliveryMethodEnum>
-
- org.isda.cdm.DeliveryMethodEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DeliveryMethodEnum>
public enum DeliveryMethodEnum extends java.lang.Enum<DeliveryMethodEnum>
Specifies delivery methods for securities transactions. This coding-scheme defines the possible delivery methods for securities.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELIVERY_VERSUS_PAYMENT
Indicates that a securities delivery must be made against payment in simultaneous transmissions and stipulate each other.FREE_OF_PAYMENT
Indicates that a securities delivery can be made without a simultaneous cash payment in exchange and not depending on if payment obligations are fulfilled or not and vice versa.PRE_DELIVERY
Indicates that a securities delivery must be made in full before the payment for the securities; fulfillment of payment obligations depends on securities delivery obligations fulfillment.PRE_PAYMENT
Indicates that a payment in full amount must be made before the securities delivery; fulfillment of securities delivery obligations depends on payment obligations fulfillment.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static DeliveryMethodEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DeliveryMethodEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELIVERY_VERSUS_PAYMENT
@RosettaSynonym(value="DeliveryVersusPayment", source="FpML_5_10") public static final DeliveryMethodEnum DELIVERY_VERSUS_PAYMENT
Indicates that a securities delivery must be made against payment in simultaneous transmissions and stipulate each other.
-
FREE_OF_PAYMENT
@RosettaSynonym(value="FreeOfPayment", source="FpML_5_10") public static final DeliveryMethodEnum FREE_OF_PAYMENT
Indicates that a securities delivery can be made without a simultaneous cash payment in exchange and not depending on if payment obligations are fulfilled or not and vice versa.
-
PRE_DELIVERY
@RosettaSynonym(value="PreDelivery", source="FpML_5_10") public static final DeliveryMethodEnum PRE_DELIVERY
Indicates that a securities delivery must be made in full before the payment for the securities; fulfillment of payment obligations depends on securities delivery obligations fulfillment.
-
PRE_PAYMENT
@RosettaSynonym(value="PrePayment", source="FpML_5_10") public static final DeliveryMethodEnum PRE_PAYMENT
Indicates that a payment in full amount must be made before the securities delivery; fulfillment of securities delivery obligations depends on payment obligations fulfillment.
-
-
Method Detail
-
values
public static DeliveryMethodEnum[] 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 (DeliveryMethodEnum c : DeliveryMethodEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeliveryMethodEnum 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<DeliveryMethodEnum>
-
-