Enum Class CalculationAgentPartyEnum
java.lang.Object
java.lang.Enum<CalculationAgentPartyEnum>
net.finmath.smartcontract.product.xml.CalculationAgentPartyEnum
- All Implemented Interfaces:
Serializable
,Comparable<CalculationAgentPartyEnum>
,Constable
Java class for CalculationAgentPartyEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CalculationAgentPartyEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="ExercisingParty"/> <enumeration value="NonExercisingParty"/> <enumeration value="AsSpecifiedInMasterAgreement"/> <enumeration value="AsSpecifiedInStandardTermsSupplement"/> <enumeration value="Both"/> </restriction> </simpleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe Calculation Agent is determined by reference to the relevant master agreement.The Calculation Agent is determined by reference to the relevant standard terms supplement.Both parties with joined rights to be a calculation agent.The party that gives notice of exercise.The party that is given notice of exercise. -
Method Summary
Modifier and TypeMethodDescriptionstatic CalculationAgentPartyEnum
value()
static CalculationAgentPartyEnum
Returns the enum constant of this class with the specified name.static CalculationAgentPartyEnum[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXERCISING_PARTY
The party that gives notice of exercise. Per 2000 ISDA Definitions, Section 11.1. Parties, paragraph (d). -
NON_EXERCISING_PARTY
The party that is given notice of exercise. Per 2000 ISDA Definitions, Section 11.1. Parties, paragraph (e). -
AS_SPECIFIED_IN_MASTER_AGREEMENT
The Calculation Agent is determined by reference to the relevant master agreement. -
AS_SPECIFIED_IN_STANDARD_TERMS_SUPPLEMENT
The Calculation Agent is determined by reference to the relevant standard terms supplement. -
BOTH
Both parties with joined rights to be a calculation agent.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
-
fromValue
-