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

com.opengamma.strata.pricer.index.OvernightFutureOptionVolatilitiesName Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2022 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.strata.pricer.index;

import java.io.Serializable;

import org.joda.convert.FromString;

import com.opengamma.strata.collect.ArgChecker;
import com.opengamma.strata.data.MarketDataName;

/**
 * The name of a set of overnight future option volatilities.
 */
public final class OvernightFutureOptionVolatilitiesName
    extends MarketDataName
    implements Serializable {

  /** Serialization version. */
  private static final long serialVersionUID = 1L;

  /**
   * The name.
   */
  private final String name;

  //-------------------------------------------------------------------------
  /**
   * Obtains an instance from the specified name.
   * 

* Names may contain any character, but must not be empty. * * @param name the name * @return the name instance */ @FromString public static OvernightFutureOptionVolatilitiesName of(String name) { return new OvernightFutureOptionVolatilitiesName(name); } /** * Creates an instance. * * @param name the name */ private OvernightFutureOptionVolatilitiesName(String name) { this.name = ArgChecker.notEmpty(name, "name"); } //------------------------------------------------------------------------- @Override public Class getMarketDataType() { return OvernightFutureOptionVolatilities.class; } @Override public String getName() { return name; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy