Class MovingFeatureBuilder.Period

java.lang.Object
org.apache.sis.internal.storage.csv.MovingFeatureBuilder.Period
Enclosing class:
MovingFeatureBuilder

private static final class MovingFeatureBuilder.Period extends Object
A dynamic property value together with the period of time in which this property is valid.
  • Field Details

    • startTime

      final long startTime
      Beginning in milliseconds since Java epoch of the period when the property value is valid.
    • endTime

      long endTime
      End in milliseconds since Java epoch of the period when the property value is valid. This end time will be adjusted if the next added period can be merged with this period.
    • value

      final Object value
      The property value.
    • previous

      Previous property in a chained list of properties.
  • Constructor Details

    • Period

      Period(MovingFeatureBuilder.Period previous, long startTime, long endTime, Object value)
      Creates a new property value valid on the given period of time.