All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.belladati.sdk.dataset.Indicator Maven / Gradle / Ivy

Go to download

The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.

There is a newer version: 0.9.15.1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy