public interface CurveGroup
This is used to hold a group of related curves, typically forming a logical set. It is often used to hold the results of a curve calibration.
Curve groups can also be created from a set of existing curves.
In Strata v2, this type was converted to an interface.
If migrating, change your code to RatesCurveGroup.
| Modifier and Type | Method and Description |
|---|---|
Optional<Curve> |
findCurve(CurveName name)
Finds the curve with the specified name.
|
CurveGroupName |
getName()
Gets the name of the curve group.
|
Stream<Curve> |
stream()
Returns a stream of all curves in the group.
|
CurveGroupName getName()
Optional<Curve> findCurve(CurveName name)
If the curve cannot be found, empty is returned.
name - the curve nameCopyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.