Skip to content

Commit 10a345c

Browse files
committed
review feedback
Signed-off-by: Mark Herwege <[email protected]>
1 parent e76f643 commit 10a345c

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,9 @@ Calling `Item.persistence` returns an `ItemPersistence` object with the followin
553553
- .varianceUntil(timestamp, serviceId) ⇒ `PersistedState | null`
554554
- .varianceBetween(begin, end, serviceId) ⇒ `PersistedState | null`
555555

556-
`riemannType` is an optional argument for methods that require calculating an approximation of the integral value. The approximation is calculated using a Riemann sum, with left, right, trapezoidal or midpoint value approximations. The argument is a Java RiemannType enum with possible values: `RiemannType.LEFT`, `RiemannType.RIGHT`, `RiemannType.TRAPEZOIDAL` or `RiemannType.MIDPOINT`. If ommitted, `RiemannType.LEFT` is used.
556+
`riemannType` is an optional argument for methods that require calculating an approximation of the integral value.
557+
The approximation is calculated using a Riemann sum, with left, right, trapezoidal or midpoint value approximations.
558+
The argument is a Java RiemannType enum with possible values: `RiemannType.LEFT`, `RiemannType.RIGHT`, `RiemannType.TRAPEZOIDAL` or `RiemannType.MIDPOINT`. If ommitted, `RiemannType.LEFT` is used.
557559

558560
Note: `serviceId` is optional, if omitted, the default persistence service will be used.
559561

src/items/item-persistence.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { _toOpenhabPrimitiveType, _isTimeSeries } = require('../helpers');
66
const PersistenceExtensions = Java.type('org.openhab.core.persistence.extensions.PersistenceExtensions');
77
const TimeSeries = Java.type('org.openhab.core.types.TimeSeries');
88
const TypeParser = Java.type('org.openhab.core.types.TypeParser');
9-
const RiemannType = Java.type('org.openhab..core.persistence.extensions.PersistenceExtensions.RiemannType');
9+
const RiemannType = Java.type('org.openhab.core.persistence.extensions.PersistenceExtensions.RiemannType');
1010

1111
/**
1212
* @typedef {import('@js-joda/core').ZonedDateTime} time.ZonedDateTime
@@ -655,12 +655,12 @@ class ItemPersistence {
655655
}
656656

657657
/**
658-
* Gets the RiemannSum of the states of a given Item since a certain point in time, time is calculated in seconds.
658+
* Gets the Riemann sum of the states of a given Item since a certain point in time, time is calculated in seconds.
659659
*
660660
* @example
661661
* var yesterday = time.toZDT().minusDays(1);
662-
* var item = items.getItem('KitchenDimmer');
663-
* console.log('KitchenDimmer Riemann sum since yesterday', item.persistence.riemannSumSince(yesterday));
662+
* var item = items.getItem('SolarPower');
663+
* console.log('Solar energy production since yesterday', item.persistence.riemannSumSince(yesterday));
664664
*
665665
* @param {(time.ZonedDateTime | Date)} timestamp the point in time from which to search for the Riemann sum
666666
* @param {RiemannType} [riemannType] optional Riemann approximation type to calculate the integral approximation
@@ -674,7 +674,7 @@ class ItemPersistence {
674674
}
675675

676676
/**
677-
* Gets the RiemannSum of the states of a given Item until a certain point in time, time is calculated in seconds.
677+
* Gets the Riemann sum of the states of a given Item until a certain point in time, time is calculated in seconds.
678678
*
679679
* @param {(time.ZonedDateTime | Date)} timestamp the point in time to which to search for the Riemann sum
680680
* @param {RiemannType} [riemannType] optional Riemann approximation type to calculate the integral approximation
@@ -688,7 +688,7 @@ class ItemPersistence {
688688
}
689689

690690
/**
691-
* Gets the RiemannSum of the states of a given Item between two certain points in time, time is calculated in seconds.
691+
* Gets the Riemann sum of the states of a given Item between two certain points in time, time is calculated in seconds.
692692
*
693693
* @param {(time.ZonedDateTime | Date)} begin the point in time from which to start the Riemann sum
694694
* @param {(time.ZonedDateTime | Date)} end the point in time to which to start the Riemann sum

0 commit comments

Comments
 (0)