com.opengamma.strata.market.param.DatedParameterMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of strata-market Show documentation
Show all versions of strata-market Show documentation
Entities describing the financial market
The newest version!
/*
* Copyright (C) 2016 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.market.param;
import java.time.LocalDate;
/**
* Parameter metadata that specifies a date.
*/
public interface DatedParameterMetadata
extends ParameterMetadata {
/**
* Gets the date associated with the parameter.
*
* This is the date that is most closely associated with the parameter.
* The actual parameter is typically a year fraction based on a day count.
*
* @return the date
*/
public abstract LocalDate getDate();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy