com.opengamma.strata.pricer.option.TenorRawOptionData Maven / Gradle / Ivy
/*
* Copyright (C) 2016 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.pricer.option;
import java.io.Serializable;
import java.lang.invoke.MethodHandles;
import java.util.Map;
import java.util.SortedMap;
import org.joda.beans.ImmutableBean;
import org.joda.beans.JodaBeanUtils;
import org.joda.beans.MetaBean;
import org.joda.beans.TypedMetaBean;
import org.joda.beans.gen.BeanDefinition;
import org.joda.beans.gen.PropertyDefinition;
import org.joda.beans.impl.light.LightMetaBean;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.ImmutableSortedMap;
import com.opengamma.strata.basics.date.Tenor;
/**
* Raw data from the volatility market for a set of tenors.
*/
@BeanDefinition(style = "light")
public final class TenorRawOptionData
implements ImmutableBean, Serializable {
/**
* The map of tenor to option data.
*/
@PropertyDefinition(validate = "notNull")
private final ImmutableSortedMap data;
//-------------------------------------------------------------------------
/**
* Obtains an instance of the raw volatility.
*
* The data values can be model parameters (like Black or normal volatilities) or direct option prices.
*
* @param data the map of data by tenor
* @return the instance
*/
public static TenorRawOptionData of(Map data) {
return new TenorRawOptionData(ImmutableSortedMap.copyOf(data));
}
//-------------------------------------------------------------------------
/**
* Gets the set of tenors.
*
* @return the set of tenors
*/
public ImmutableSet getTenors() {
return data.keySet();
}
/**
* Gets the raw option data for a given tenor.
*
* @param tenor the tenor to retrieve
* @return the raw option data
*/
public RawOptionData getData(Tenor tenor) {
RawOptionData result = data.get(tenor);
if (result == null) {
throw new IllegalArgumentException("No data found for tenor " + tenor);
}
return result;
}
//------------------------- AUTOGENERATED START -------------------------
/**
* The meta-bean for {@code TenorRawOptionData}.
*/
private static final TypedMetaBean META_BEAN =
LightMetaBean.of(
TenorRawOptionData.class,
MethodHandles.lookup(),
new String[] {
"data"},
ImmutableSortedMap.of());
/**
* The meta-bean for {@code TenorRawOptionData}.
* @return the meta-bean, not null
*/
public static TypedMetaBean meta() {
return META_BEAN;
}
static {
MetaBean.register(META_BEAN);
}
/**
* The serialization version id.
*/
private static final long serialVersionUID = 1L;
private TenorRawOptionData(
SortedMap data) {
JodaBeanUtils.notNull(data, "data");
this.data = ImmutableSortedMap.copyOfSorted(data);
}
@Override
public TypedMetaBean metaBean() {
return META_BEAN;
}
//-----------------------------------------------------------------------
/**
* Gets the map of tenor to option data.
* @return the value of the property, not null
*/
public ImmutableSortedMap getData() {
return data;
}
//-----------------------------------------------------------------------
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj != null && obj.getClass() == this.getClass()) {
TenorRawOptionData other = (TenorRawOptionData) obj;
return JodaBeanUtils.equal(data, other.data);
}
return false;
}
@Override
public int hashCode() {
int hash = getClass().hashCode();
hash = hash * 31 + JodaBeanUtils.hashCode(data);
return hash;
}
@Override
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("TenorRawOptionData{");
buf.append("data").append('=').append(JodaBeanUtils.toString(data));
buf.append('}');
return buf.toString();
}
//-------------------------- AUTOGENERATED END --------------------------
}