Package org.isda.cdm
Enum LimitLevelEnum
- java.lang.Object
-
- java.lang.Enum<LimitLevelEnum>
-
- org.isda.cdm.LimitLevelEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LimitLevelEnum>
public enum LimitLevelEnum extends java.lang.Enum<LimitLevelEnum>
The enumeration values to specify the level at which the limit is set: customer business, proprietary business or account level. This is part of the CME specification for clearing credit limits, although not specified as a set of enumerated values as part of the clearing confirmation specification.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT
The limit is set in relation to the proprietary business undertaken by the clearing counterparty.CUSTOMER
The limit is set in relation to the customer business undertaken by the clearing counterparty.HOUSE
The limit is set at the account level in relation to the clearing counterparty.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static LimitLevelEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LimitLevelEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT
@RosettaSynonym(value="ACCT",source="Rosetta_Workbench") @RosettaSynonym(value="ACCT",source="CME_ClearedConfirm_1_17") @RosettaSynonym(value="ACCT",source="CME_SubmissionIRS_1_0") public static final LimitLevelEnum ACCOUNT
The limit is set in relation to the proprietary business undertaken by the clearing counterparty.
-
CUSTOMER
@RosettaSynonym(value="CUST",source="Rosetta_Workbench") @RosettaSynonym(value="CUST",source="CME_ClearedConfirm_1_17") @RosettaSynonym(value="CUST",source="CME_SubmissionIRS_1_0") public static final LimitLevelEnum CUSTOMER
The limit is set in relation to the customer business undertaken by the clearing counterparty.
-
HOUSE
@RosettaSynonym(value="HOUS",source="Rosetta_Workbench") @RosettaSynonym(value="HOUS",source="CME_ClearedConfirm_1_17") @RosettaSynonym(value="HOUS",source="CME_SubmissionIRS_1_0") public static final LimitLevelEnum HOUSE
The limit is set at the account level in relation to the clearing counterparty.
-
-
Method Detail
-
values
public static LimitLevelEnum[] 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 (LimitLevelEnum c : LimitLevelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LimitLevelEnum 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<LimitLevelEnum>
-
-