Uses of Interface
org.n52.shetland.ogc.om.ObservationStream
-
Packages that use ObservationStream Package Description org.n52.shetland.ogc.om org.n52.shetland.ogc.sos.response -
-
Uses of ObservationStream in org.n52.shetland.ogc.om
Classes in org.n52.shetland.ogc.om that implement ObservationStream Modifier and Type Class Description classAbstractObservationStreamclassStreamingValue<S>Abstract streaming value classMethods in org.n52.shetland.ogc.om that return ObservationStream Modifier and Type Method Description static ObservationStreamObservationStream. empty()Creates an empty observation stream.default ObservationStreamObservationStream. filter(Predicate<OmObservation> predicate)Creates a new observation stream that filters the observatons from the original stream using the supplied predicate.default ObservationStreamObservationStream. flatMap(ThrowingFunction<OmObservation,ObservationStream,OwsExceptionReport> mapper)Creates a new observation stream from a mapping function that produces a stream for every observation in this stream.default ObservationStreamObservationStream. map(ThrowingUnaryOperator<OmObservation,OwsExceptionReport> operator)Produces a observation new stream from a mapping function that produces a new observation for every observation in this stream.default ObservationStreamObservationStream. merge()Creates a new stream out of this stream in which observations with the same observation constellation are merged.default ObservationStreamObservationStream. merge(ObservationMergeIndicator indicator)Creates a new stream out of this stream in which observations with the same observation constellation are merged.default ObservationStreamObservationStream. modify(ThrowingConsumer<OmObservation,OwsExceptionReport> consumer)Creates a new observation stream from an consumer that consumes every observation before it is emitted by the stream.static ObservationStreamObservationStream. of(Iterable<OmObservation> observations)Creates a new observation stream from the supplied iterable.static ObservationStreamObservationStream. of(Iterator<OmObservation> observations)Creates a new observation stream from the supplied iterator.static ObservationStreamObservationStream. of(OmObservation observation)Creates a new observation stream from the supplied observation.Methods in org.n52.shetland.ogc.om that return types with arguments of type ObservationStream Modifier and Type Method Description Value<ObservationStream>StreamingValue. getValue()Method parameters in org.n52.shetland.ogc.om with type arguments of type ObservationStream Modifier and Type Method Description default ObservationStreamObservationStream. flatMap(ThrowingFunction<OmObservation,ObservationStream,OwsExceptionReport> mapper)Creates a new observation stream from a mapping function that produces a stream for every observation in this stream.voidStreamingValue. setValue(Value<ObservationStream> value) -
Uses of ObservationStream in org.n52.shetland.ogc.sos.response
Classes in org.n52.shetland.ogc.sos.response that implement ObservationStream Modifier and Type Class Description classAbstractStreamingMethods in org.n52.shetland.ogc.sos.response that return ObservationStream Modifier and Type Method Description ObservationStreamAbstractObservationResponse. getObservationCollection()Methods in org.n52.shetland.ogc.sos.response with parameters of type ObservationStream Modifier and Type Method Description AbstractObservationResponseAbstractObservationResponse. setObservationCollection(ObservationStream observationCollection)
-