com.opengamma.sdk.margin.MarginCalcMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-margin Show documentation
Show all versions of sdk-margin Show documentation
OpenGamma SDK - Provides access to the Margin service
/*
* Copyright (C) 2018 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.sdk.margin;
/**
* The mode in which the calculation will be executed.
*/
public enum MarginCalcMode {
/**
* Runs the margin calculation in Spot mode.
*/
SPOT,
/**
* Runs the margin calculation in Forward Approximation mode.
*/
FORWARD
}