Package org.isda.cdm
Enum NationalizationOrInsolvencyOrDelistingEventEnum
- java.lang.Object
-
- java.lang.Enum<NationalizationOrInsolvencyOrDelistingEventEnum>
-
- org.isda.cdm.NationalizationOrInsolvencyOrDelistingEventEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NationalizationOrInsolvencyOrDelistingEventEnum>
public enum NationalizationOrInsolvencyOrDelistingEventEnum extends java.lang.Enum<NationalizationOrInsolvencyOrDelistingEventEnum>
Defines the consequences of nationalization, insolvency and delisting events relating to the underlying.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELLATION_AND_PAYMENT
The trade is terminated.NEGOTIATED_CLOSEOUT
The parties may, but are not obliged, to terminate the transaction on mutually acceptable terms and if the terms are not agreed then the transaction continues.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static NationalizationOrInsolvencyOrDelistingEventEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NationalizationOrInsolvencyOrDelistingEventEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEGOTIATED_CLOSEOUT
@RosettaSynonym(value="NegotiatedCloseout", source="FpML_5_10") public static final NationalizationOrInsolvencyOrDelistingEventEnum NEGOTIATED_CLOSEOUT
The parties may, but are not obliged, to terminate the transaction on mutually acceptable terms and if the terms are not agreed then the transaction continues.
-
CANCELLATION_AND_PAYMENT
@RosettaSynonym(value="CancellationAndPayment", source="FpML_5_10") public static final NationalizationOrInsolvencyOrDelistingEventEnum CANCELLATION_AND_PAYMENT
The trade is terminated.
-
-
Method Detail
-
values
public static NationalizationOrInsolvencyOrDelistingEventEnum[] 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 (NationalizationOrInsolvencyOrDelistingEventEnum c : NationalizationOrInsolvencyOrDelistingEventEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NationalizationOrInsolvencyOrDelistingEventEnum 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<NationalizationOrInsolvencyOrDelistingEventEnum>
-
-