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

com.belladati.sdk.report.AttributeValue 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.report;

import com.belladati.sdk.filter.FilterOperation.MultiValueOperation;

/**
 * A single value of an attribute. Attribute values have a human-readable label
 * and an internal value. Attribute values are used for filtering in a
 * {@link MultiValueOperation}.
 * 
 * @author Chris Hennigfeld
 */
public interface AttributeValue {

	/**
	 * Returns the human-readable label of this attribute value.
	 * 
	 * @return the human-readable label of this attribute value
	 */
	String getLabel();

	/**
	 * Returns the internal value of this attribute value.
	 * 
	 * @return the internal value of this attribute value
	 */
	String getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy