Package org.isda.cdm
Enum ExecutionTypeEnum
- java.lang.Object
-
- java.lang.Enum<ExecutionTypeEnum>
-
- org.isda.cdm.ExecutionTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExecutionTypeEnum>
public enum ExecutionTypeEnum extends java.lang.Enum<ExecutionTypeEnum>
The enumerated values to specify how a contract has been executed, e.g. electronically, verbally, ...- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ELECTRONIC
Execution via electronic execution facility, derivatives contract market, or other electronic message such as an instant message.OFF_FACILITY
Bilateral execution between counterparties not pursuant to the rules of a SEF or DCM.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static ExecutionTypeEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExecutionTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ELECTRONIC
@RosettaSynonym(value="Electronic",source="FpML_5_10") @RosettaSynonym(value="Electronic",source="DTCC_11_0") @RosettaSynonym(value="Electronic",source="DTCC_9_0") @RosettaSynonym(value="Electronic",source="CME_ClearedConfirm_1_17") @RosettaSynonym(value="Electronic",source="Rosetta_Workbench") @RosettaSynonym(value="E",source="CME_SubmissionIRS_1_0") public static final ExecutionTypeEnum ELECTRONIC
Execution via electronic execution facility, derivatives contract market, or other electronic message such as an instant message.
-
OFF_FACILITY
@RosettaSynonym(value="OffFacility",source="Rosetta_Workbench") @RosettaSynonym(value="O",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Voice",source="FpML_5_10") @RosettaSynonym(value="Voice",source="DTCC_11_0") @RosettaSynonym(value="Voice",source="DTCC_9_0") @RosettaSynonym(value="Voice",source="CME_ClearedConfirm_1_17") public static final ExecutionTypeEnum OFF_FACILITY
Bilateral execution between counterparties not pursuant to the rules of a SEF or DCM.
-
-
Method Detail
-
values
public static ExecutionTypeEnum[] 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 (ExecutionTypeEnum c : ExecutionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionTypeEnum 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<ExecutionTypeEnum>
-
-