Class Filter

java.lang.Object
dev.morphia.query.filters.Filter
Direct Known Subclasses:
CommentFilter, GeoWithinFilter, NearFilter, RegexFilter, TextSearchFilter

public class Filter extends Object
Base class for query filters
Since:
2.0
  • Constructor Details

    • Filter

      protected Filter(String name)
      Parameters:
      name - the name of the filter
    • Filter

      protected Filter(String name, @Nullable String field, @Nullable Object value)
      Parameters:
      name - the name of the filter
      field - the field
      value - the value
  • Method Details

    • not

      public Filter not()
      Negates this filter by wrapping in "$not: {}"
      Returns:
      this
      MongoDB documentation
      Query Filter: $not