Package org.isda.cdm
Enum TimeTypeEnum
- java.lang.Object
-
- java.lang.Enum<TimeTypeEnum>
-
- org.isda.cdm.TimeTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimeTypeEnum>
public enum TimeTypeEnum extends java.lang.Enum<TimeTypeEnum>
The enumerated values to specify points in the day when option exercise and valuation can occur.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AS_SPECIFIED_IN_MASTER_CONFIRMATION
The time is determined as provided in the relevant Master Confirmation.CLOSE
The official closing time of the exchange on the valuation date.DERIVATIVES_CLOSE
The official closing time of the derivatives exchange on which a derivative contract is listed on that security underlier.OPEN
The official opening time of the exchange on the valuation date.OSP
The time at which the official settlement price is determined.SPECIFIC_TIME
The time specified in the element equityExpirationTime or valuationTime (as appropriate).XETRA
The time at which the official settlement price (following the auction by the exchange) is determined by the exchange.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static TimeTypeEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimeTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOSE
@RosettaSynonym(value="Close",source="FpML_5_10") @RosettaSynonym(value="Close",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Close",source="DTCC_11_0") @RosettaSynonym(value="Close",source="DTCC_9_0") @RosettaSynonym(value="Close",source="CME_ClearedConfirm_1_17") public static final TimeTypeEnum CLOSE
The official closing time of the exchange on the valuation date.
-
OPEN
@RosettaSynonym(value="Open",source="FpML_5_10") @RosettaSynonym(value="Open",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Open",source="DTCC_11_0") @RosettaSynonym(value="Open",source="DTCC_9_0") @RosettaSynonym(value="Open",source="CME_ClearedConfirm_1_17") public static final TimeTypeEnum OPEN
The official opening time of the exchange on the valuation date.
-
OSP
@RosettaSynonym(value="OSP",source="FpML_5_10") @RosettaSynonym(value="OSP",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="OSP",source="DTCC_11_0") @RosettaSynonym(value="OSP",source="DTCC_9_0") @RosettaSynonym(value="OSP",source="CME_ClearedConfirm_1_17") public static final TimeTypeEnum OSP
The time at which the official settlement price is determined.
-
SPECIFIC_TIME
@RosettaSynonym(value="SpecificTime",source="FpML_5_10") @RosettaSynonym(value="SpecificTime",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="SpecificTime",source="DTCC_11_0") @RosettaSynonym(value="SpecificTime",source="DTCC_9_0") @RosettaSynonym(value="SpecificTime",source="CME_ClearedConfirm_1_17") public static final TimeTypeEnum SPECIFIC_TIME
The time specified in the element equityExpirationTime or valuationTime (as appropriate).
-
XETRA
@RosettaSynonym(value="XETRA",source="FpML_5_10") @RosettaSynonym(value="XETRA",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="XETRA",source="DTCC_11_0") @RosettaSynonym(value="XETRA",source="DTCC_9_0") @RosettaSynonym(value="XETRA",source="CME_ClearedConfirm_1_17") public static final TimeTypeEnum XETRA
The time at which the official settlement price (following the auction by the exchange) is determined by the exchange.
-
DERIVATIVES_CLOSE
@RosettaSynonym(value="DerivativesClose",source="FpML_5_10") @RosettaSynonym(value="DerivativesClose",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="DerivativesClose",source="DTCC_11_0") @RosettaSynonym(value="DerivativesClose",source="DTCC_9_0") @RosettaSynonym(value="DerivativesClose",source="CME_ClearedConfirm_1_17") public static final TimeTypeEnum DERIVATIVES_CLOSE
The official closing time of the derivatives exchange on which a derivative contract is listed on that security underlier.
-
AS_SPECIFIED_IN_MASTER_CONFIRMATION
@RosettaSynonym(value="AsSpecifiedInMasterConfirmation",source="FpML_5_10") @RosettaSynonym(value="AsSpecifiedInMasterConfirmation",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="AsSpecifiedInMasterConfirmation",source="DTCC_11_0") @RosettaSynonym(value="AsSpecifiedInMasterConfirmation",source="DTCC_9_0") @RosettaSynonym(value="AsSpecifiedInMasterConfirmation",source="CME_ClearedConfirm_1_17") public static final TimeTypeEnum AS_SPECIFIED_IN_MASTER_CONFIRMATION
The time is determined as provided in the relevant Master Confirmation.
-
-
Method Detail
-
values
public static TimeTypeEnum[] 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 (TimeTypeEnum c : TimeTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeTypeEnum 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<TimeTypeEnum>
-
-