Class JRDesignValueDataset
java.lang.Object
net.sf.jasperreports.engine.base.JRBaseElementDataset
net.sf.jasperreports.engine.design.JRDesignElementDataset
net.sf.jasperreports.charts.design.JRDesignChartDataset
net.sf.jasperreports.charts.design.JRDesignValueDataset
- All Implemented Interfaces:
Serializable,Cloneable,JRChartDataset,JRValueDataset,DatasetRunHolder,JRChangeEventsSupport,JRCloneable,JRElementDataset
A data set that contains a single value. A value
dataset is suitable for using with charts that show a single value against
a potential range, such as meter chart or a thermometer chart.
- Author:
- Barry Klawans (bklawans@users.sourceforge.net)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringprotected JRExpressionThe expression that returns the single value contained in this dataset.Fields inherited from class net.sf.jasperreports.engine.design.JRDesignElementDataset
PROPERTY_DATASET_RESET_TYPE, PROPERTY_DATASET_RUN, PROPERTY_INCREMENT_GROUP, PROPERTY_INCREMENT_TYPE, PROPERTY_INCREMENT_WHEN_EXPRESSION, PROPERTY_RESET_GROUP, PROPERTY_RESET_TYPEFields inherited from class net.sf.jasperreports.engine.base.JRBaseElementDataset
datasetResetType, datasetRun, incrementGroup, incrementType, incrementWhenExpression, resetGroupFields inherited from interface net.sf.jasperreports.charts.JRChartDataset
CATEGORY_DATASET, GANTT_DATASET, HIGHLOW_DATASET, PIE_DATASET, TIMEPERIOD_DATASET, TIMESERIES_DATASET, VALUE_DATASET, XY_DATASET, XYZ_DATASET -
Constructor Summary
ConstructorsConstructorDescriptionJRDesignValueDataset(JRChartDataset dataset) Construct a new dataset that is a copy of an existing one. -
Method Summary
Modifier and TypeMethodDescriptionclone()voidcollectExpressions(ChartsExpressionCollector collector) voidcollectExpressions(JRExpressionCollector collector) Adds all the expression used by this plot with the specified collector.byteReturns the type of this dataset.Returns the expression that indicates the value held by this dataset.voidsetValueExpression(JRExpression valueExpression) Sets the expression that indicates the value held by this dataset.voidvalidate(ChartsVerifier verifier) Validates the dataset using a verifier.Methods inherited from class net.sf.jasperreports.engine.design.JRDesignElementDataset
getEventSupport, setDatasetRun, setIncrementGroup, setIncrementType, setIncrementWhenExpression, setResetGroup, setResetTypeMethods inherited from class net.sf.jasperreports.engine.base.JRBaseElementDataset
getDatasetResetType, getDatasetRun, getIncrementGroup, getIncrementType, getIncrementWhenExpression, getResetGroupMethods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.sf.jasperreports.engine.JRElementDataset
getDatasetResetType, getDatasetRun, getIncrementGroup, getIncrementType, getIncrementWhenExpression, getResetGroup
-
Field Details
-
PROPERTY_VALUE_EXPRESSION
- See Also:
-
valueExpression
The expression that returns the single value contained in this dataset.
-
-
Constructor Details
-
JRDesignValueDataset
Construct a new dataset that is a copy of an existing one.- Parameters:
dataset- the dataset to copy
-
-
Method Details
-
getValueExpression
Description copied from interface:JRValueDatasetReturns the expression that indicates the value held by this dataset.- Specified by:
getValueExpressionin interfaceJRValueDataset- Returns:
- the expression that indicates the value held by this dataset
-
setValueExpression
Sets the expression that indicates the value held by this dataset.- Parameters:
valueExpression- the expression that returns the value held by this dataset
-
getDatasetType
public byte getDatasetType()Returns the type of this dataset.- Specified by:
getDatasetTypein interfaceJRChartDataset- Overrides:
getDatasetTypein classJRDesignChartDataset- Returns:
- the type of this dataset - always
VALUE_DATASET
-
collectExpressions
Adds all the expression used by this plot with the specified collector. All collected expression that are also registered with a factory will be included with the report is compiled.- Specified by:
collectExpressionsin interfaceJRElementDataset- Overrides:
collectExpressionsin classJRBaseElementDataset- Parameters:
collector- the expression collector to use
-
collectExpressions
- Specified by:
collectExpressionsin interfaceJRChartDataset
-
validate
Description copied from interface:JRChartDatasetValidates the dataset using a verifier.Broken rules are collected by the verifier.
- Specified by:
validatein interfaceJRChartDataset- Parameters:
verifier- the verifier to use for validation
-
clone
- Specified by:
clonein interfaceJRCloneable- Overrides:
clonein classJRDesignElementDataset
-