Package org.isda.cdm
Enum SpreadScheduleTypeEnum
- java.lang.Object
-
- java.lang.Enum<SpreadScheduleTypeEnum>
-
- org.isda.cdm.SpreadScheduleTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpreadScheduleTypeEnum>
public enum SpreadScheduleTypeEnum extends java.lang.Enum<SpreadScheduleTypeEnum>
The enumerated values to specify a long or short spread value.- Version:
- 2.5.4
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static SpreadScheduleTypeEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpreadScheduleTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LONG
@RosettaSynonym(value="Long",source="FpML_5_10") @RosettaSynonym(value="Long",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Long",source="DTCC_11_0") @RosettaSynonym(value="Long",source="DTCC_9_0") @RosettaSynonym(value="Long",source="CME_ClearedConfirm_1_17") public static final SpreadScheduleTypeEnum LONG
Represents a Long Spread Schedule. Spread schedules defined as 'Long' will be applied to Long Positions.
-
SHORT
@RosettaSynonym(value="Short",source="FpML_5_10") @RosettaSynonym(value="Short",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Short",source="DTCC_11_0") @RosettaSynonym(value="Short",source="DTCC_9_0") @RosettaSynonym(value="Short",source="CME_ClearedConfirm_1_17") public static final SpreadScheduleTypeEnum SHORT
Represents a Short Spread Schedule. Spread schedules defined as 'Short' will be applied to Short Positions.
-
-
Method Detail
-
values
public static SpreadScheduleTypeEnum[] 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 (SpreadScheduleTypeEnum c : SpreadScheduleTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpreadScheduleTypeEnum 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<SpreadScheduleTypeEnum>
-
-