Class Predicates.FeatureBuilder

java.lang.Object
com.yahoo.document.predicate.Predicates.FeatureBuilder
Enclosing class:
Predicates

public static class Predicates.FeatureBuilder extends Object
  • Constructor Details

    • FeatureBuilder

      public FeatureBuilder(String key)
  • Method Details

    • lessThan

      public FeatureRange lessThan(long toExclusive)
    • lessThanOrEqualTo

      public FeatureRange lessThanOrEqualTo(long toInclusive)
    • greaterThan

      public FeatureRange greaterThan(long fromExclusive)
    • greaterThanOrEqualTo

      public FeatureRange greaterThanOrEqualTo(long fromInclusive)
    • inRange

      public FeatureRange inRange(long fromInclusive, long toInclusive)
    • notInRange

      public Negation notInRange(long fromInclusive, long toInclusive)
    • inSet

      public FeatureSet inSet(String... values)
    • notInSet

      public Negation notInSet(String... values)