All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opengamma.strata.product.fra.FraDiscountingMethod Maven / Gradle / Ivy

There is a newer version: 2.12.48
Show newest version
/*
 * Copyright (C) 2015 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.strata.product.fra;

import org.joda.convert.FromString;
import org.joda.convert.ToString;

import com.opengamma.strata.collect.named.EnumNames;
import com.opengamma.strata.collect.named.NamedEnum;

/**
 * A convention defining how to discount Forward Rate Agreements (FRAs).
 * 

* When calculating the price of a FRA, there are different approaches to pricing in different markets. * This method captures the approach to discounting. *

* Defined by the 2006 ISDA definitions article 8.4. */ public enum FraDiscountingMethod implements NamedEnum { /** * No discounting applies. */ NONE("None"), /** * FRA discounting as defined by ISDA. *

* Defined by the 2006 ISDA definitions article 8.4b. */ ISDA("ISDA"), /** * FRA discounting as defined by the Australian Financial Markets Association (AFMA). *

* Defined by the 2006 ISDA definitions article 8.4e. */ AFMA("AFMA"); // helper for name conversions private static final EnumNames NAMES = EnumNames.ofManualToString(FraDiscountingMethod.class); // name private final String name; // create private FraDiscountingMethod(String name) { this.name = name; } //------------------------------------------------------------------------- /** * Obtains an instance from the specified name. *

* Parsing handles the mixed case form produced by {@link #toString()} and * the upper and lower case variants of the enum constant name. * * @param name the name to parse * @return the type * @throws IllegalArgumentException if the name is not known */ @FromString public static FraDiscountingMethod of(String name) { return NAMES.parse(name); } //------------------------------------------------------------------------- /** * Returns the formatted name of the type. * * @return the formatted string representing the type */ @ToString @Override public String toString() { return name; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy