Interface ExportFilter

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Iterable<Double> apply(double value) From a single value, builds a stream of values.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • apply

         abstract Iterable<Double> apply(double value)

        From a single value, builds a stream of values.

        Parameters:
        value - the input value
        Returns:

        a sequence of double values. In most cases, it will be a single value, but may easily be an iterator with no elements (in case the value must be filtered). Also, the case in which a single value gets mapped onto multiple values is supported by this interface.