Class FeatureFilterOperator


  • public class FeatureFilterOperator
    extends java.lang.Object
    Supports "and", "or", and "not" operations on feature filters.
    Since:
    12.1
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static FeatureFilter and​(FeatureFilter[] filters)
      Performs "and" operation on an array of feature filters, and returns the combined feature filter.
      static FeatureFilter not​(FeatureFilter filter)
      Performs "not" operation on the specified feature filter, and returns the opposite feature filter.
      static FeatureFilter or​(FeatureFilter[] filters)
      Performs "or" operation on an array of feature filters, and returns the combined feature filter.
      • Methods inherited from class java.lang.Object

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

      • FeatureFilterOperator

        public FeatureFilterOperator()
    • Method Detail

      • and

        public static FeatureFilter and​(FeatureFilter[] filters)
        Performs "and" operation on an array of feature filters, and returns the combined feature filter.
      • or

        public static FeatureFilter or​(FeatureFilter[] filters)
        Performs "or" operation on an array of feature filters, and returns the combined feature filter.
      • not

        public static FeatureFilter not​(FeatureFilter filter)
        Performs "not" operation on the specified feature filter, and returns the opposite feature filter.