Interface IAbstractBarVisualSetElement<C>
- Type Parameters:
C- data categories type
- All Known Implementing Classes:
BarVisualSet.BarVisualElement,HistogramVisualSet.HistogramVisualElement
public interface IAbstractBarVisualSetElement<C>
Interface that is the parent for all visual set elements with
rectangle-visuals corresponding to the statistical data by categories as well
as histograms.
- Author:
- Aleksey Kirillov
-
Method Summary
Modifier and TypeMethodDescriptionDelegates a call toBarLabeledVisualSet.getBarLabelColor(Object)for the data element corresponding to this visual element.doubleDelegates a call toBarLabeledVisualSet.getBarLabelFontSize(Object)for the data element corresponding to this visual element.Delegates a call toBarLabeledVisualSet.getBarLabelText(Object)for the data element corresponding to this visual element.Delegates a call toIAbstractBarVisualSet.getElementText(Object)for the data element corresponding to this visual element.doubleDelegates a call toIAbstractBarVisualSet.getSummaryValue(Object)for the data element corresponding to this visual element.doublegetSummaryValue(Predicate<C> categoryPredicate) Delegates a call toIAbstractBarVisualSet.getSummaryValue(Object, Predicate)for the data element corresponding to this visual element and given category predicate.doubleDelegates a call toIAbstractBarVisualSet.getValue(Object, Object)for the data element corresponding to this visual element and given category.
-
Method Details
-
getValue
Delegates a call toIAbstractBarVisualSet.getValue(Object, Object)for the data element corresponding to this visual element and given category.- Returns:
- the result of a call
IAbstractBarVisualSet.getValue(Object, Object)
-
getSummaryValue
double getSummaryValue()Delegates a call toIAbstractBarVisualSet.getSummaryValue(Object)for the data element corresponding to this visual element.- Returns:
- the result of a call
IAbstractBarVisualSet.getSummaryValue(Object)
-
getSummaryValue
Delegates a call toIAbstractBarVisualSet.getSummaryValue(Object, Predicate)for the data element corresponding to this visual element and given category predicate.- Returns:
- the result of a call
IAbstractBarVisualSet.getSummaryValue(Object)
-
getElementText
String getElementText()Delegates a call toIAbstractBarVisualSet.getElementText(Object)for the data element corresponding to this visual element.- Returns:
- the result of a call
IAbstractBarVisualSet.getElementText(Object)
-
getBarLabelText
String getBarLabelText()Delegates a call toBarLabeledVisualSet.getBarLabelText(Object)for the data element corresponding to this visual element.- Returns:
- the result of a call
BarLabeledVisualSet.getBarLabelText(Object)
-
getBarLabelFontSize
double getBarLabelFontSize()Delegates a call toBarLabeledVisualSet.getBarLabelFontSize(Object)for the data element corresponding to this visual element.- Returns:
- the result of a call
BarLabeledVisualSet.getBarLabelFontSize(Object)
-
getBarLabelColor
Color getBarLabelColor()Delegates a call toBarLabeledVisualSet.getBarLabelColor(Object)for the data element corresponding to this visual element.- Returns:
- the result of a call
BarLabeledVisualSet.getBarLabelColor(Object)
-