Package org.isda.cdm
Enum RepoDurationEnum
- java.lang.Object
-
- java.lang.Enum<RepoDurationEnum>
-
- org.isda.cdm.RepoDurationEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RepoDurationEnum>
public enum RepoDurationEnum extends java.lang.Enum<RepoDurationEnum>
A duration code for a Repo (or Securities Lending) transaction. There are many business and market rules that are derived from the duration of the transaction.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OVERNIGHT
Indicates that a contract is classified as overnight, meaning that there is one business day difference between the start and end date of the contract.TERM
Indicates that a contract is a regular term contract, with a start date and an end date.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static RepoDurationEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RepoDurationEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OVERNIGHT
@RosettaSynonym(value="Overnight", source="FpML_5_10") public static final RepoDurationEnum OVERNIGHT
Indicates that a contract is classified as overnight, meaning that there is one business day difference between the start and end date of the contract. Business rule: When the repo is overnight, the number of business days between the spot and forward value dates must be one. Forward leg must be specified.
-
TERM
@RosettaSynonym(value="Term", source="FpML_5_10") public static final RepoDurationEnum TERM
Indicates that a contract is a regular term contract, with a start date and an end date. Business rule: When the repo is 'Term', both spot and forward legs must be specified.
-
-
Method Detail
-
values
public static RepoDurationEnum[] 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 (RepoDurationEnum c : RepoDurationEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RepoDurationEnum 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<RepoDurationEnum>
-
-