![JAR search and dependency download from the Maven repository](/logo.png)
com.belladati.sdk.dataset.Indicator Maven / Gradle / Ivy
package com.belladati.sdk.dataset;
import com.belladati.sdk.util.Resource;
/**
* An indicator from a BellaDati data set. Indicators can contain raw values,
* formulas, or other indicators as a group.
*
* @author Chris Hennigfeld
*/
public interface Indicator extends Resource {
/**
* Returns the type of this indicator.
*
* @return the type of this indicator
*/
IndicatorType getType();
/**
* Returns the internal code of this data indicator, or null if
* this indicator is not of type {@link IndicatorType#DATA}.
*
* @return the internal code of this data indicator
*/
String getCode();
/**
* Returns the formula used in this formula indicator, or null if
* this indicator is not of type {@link IndicatorType#FORMULA}.
*
* @return the formula used in this formula indicator
*/
String getFormula();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy