Interface FieldFilter

All Known Implementing Classes:
AllFieldsFilter, IgnoreField, MatchAllFieldFilter, NonStaticFieldsFilter, NonTransientFieldsFilter
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface FieldFilter
The FieldFilter indicates whether any given Field should be accepted for processing or not.
Since:
2.4.1
Author:
Allard Buijze
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    accept(Field field)
    Indicates whether the given field should be accepted for processing, or skipped/ignored.
  • Method Details

    • accept

      boolean accept(Field field)
      Indicates whether the given field should be accepted for processing, or skipped/ignored.
      Parameters:
      field - The field to evaluate
      Returns:
      true when the field should be processed, otherwise false