com.opengamma.strata.calc.MeasureHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of strata-calc Show documentation
Show all versions of strata-calc Show documentation
Provides the ability to run calculations, manage market data and create scenarios
/*
* Copyright (C) 2016 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.calc;
import com.opengamma.strata.collect.named.ExtendedEnum;
/**
* Helper for measures.
*/
final class MeasureHelper {
/**
* The extended enum lookup from name to instance.
*/
static final ExtendedEnum ENUM_LOOKUP = ExtendedEnum.of(Measure.class);
//-------------------------------------------------------------------------
private MeasureHelper() {
}
}