Package org.isda.cdm
Enum ResourceTypeEnum
- java.lang.Object
-
- java.lang.Enum<ResourceTypeEnum>
-
- org.isda.cdm.ResourceTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ResourceTypeEnum>
public enum ResourceTypeEnum extends java.lang.Enum<ResourceTypeEnum>
The enumerated values to specify the type of a resource (e.g. document).- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIRMATION
Document describing the legal terms of a transaction.SUPPLEMENTAL_MATERIAL_ECONOMIC_TERMS
Document providing supplemental material economic terms to the FpML data representation.TERM_SHEET
Document describing the economic characteristics of a transaction.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static ResourceTypeEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResourceTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONFIRMATION
@RosettaSynonym(value="Confirmation",source="FpML_5_10") @RosettaSynonym(value="Confirmation",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="Confirmation",source="DTCC_11_0") @RosettaSynonym(value="Confirmation",source="DTCC_9_0") @RosettaSynonym(value="Confirmation",source="CME_ClearedConfirm_1_17") public static final ResourceTypeEnum CONFIRMATION
Document describing the legal terms of a transaction.
-
SUPPLEMENTAL_MATERIAL_ECONOMIC_TERMS
@RosettaSynonym(value="SupplementalMaterialEconomicTerms",source="FpML_5_10") @RosettaSynonym(value="SupplementalMaterialEconomicTerms",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="SupplementalMaterialEconomicTerms",source="DTCC_11_0") @RosettaSynonym(value="SupplementalMaterialEconomicTerms",source="DTCC_9_0") @RosettaSynonym(value="SupplementalMaterialEconomicTerms",source="CME_ClearedConfirm_1_17") public static final ResourceTypeEnum SUPPLEMENTAL_MATERIAL_ECONOMIC_TERMS
Document providing supplemental material economic terms to the FpML data representation. The initial intended usage is to fulfill the CFTC Part 45 rule requirement to report ‘Any other terms(s) of the swap matched or affirmed by the counterparties in verifying the swap’ when the reporting is done via the generic FpML representation.
-
TERM_SHEET
@RosettaSynonym(value="TermSheet",source="FpML_5_10") @RosettaSynonym(value="TermSheet",source="CME_SubmissionIRS_1_0") @RosettaSynonym(value="TermSheet",source="DTCC_11_0") @RosettaSynonym(value="TermSheet",source="DTCC_9_0") @RosettaSynonym(value="TermSheet",source="CME_ClearedConfirm_1_17") public static final ResourceTypeEnum TERM_SHEET
Document describing the economic characteristics of a transaction.
-
-
Method Detail
-
values
public static ResourceTypeEnum[] 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 (ResourceTypeEnum c : ResourceTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceTypeEnum 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<ResourceTypeEnum>
-
-