Package org.fairdatapipeline.estimate
Interface Estimate
-
- All Superinterfaces:
Component
,ReadComponent
,WriteComponent
@Immutable public interface Estimate extends Component
a component to store a plain simple single Number
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Distribution
getDistribution()
default java.lang.Number
getEstimate()
default java.util.List<java.lang.Number>
getSamples()
java.lang.Number
internalValue()
-
-
-
Method Detail
-
internalValue
java.lang.Number internalValue()
- Returns:
- Number - the value that is stored in this component
-
getEstimate
default java.lang.Number getEstimate()
- Specified by:
getEstimate
in interfaceReadComponent
-
getSamples
default java.util.List<java.lang.Number> getSamples()
- Specified by:
getSamples
in interfaceReadComponent
-
getDistribution
default Distribution getDistribution()
- Specified by:
getDistribution
in interfaceReadComponent
-
-