except method

AllProperties except(
  1. List<String> properties
)

remove the field names from the matching process.

Implementation

AllProperties except(List<String> properties) {
  for ( var property in properties)
    exceptions.add(property);

  return this;
}