/**
  * Determines whether the following Map Entry is accepted by this composed SnapshotFilter
  * implementation.
  *
  * @param entry the Map.Entry to evaluate.
  * @return a boolean value indicating whether this composed SnapshotFilter accepts the Map Entry.
  * @see ComposableSnapshotFilter.Operator
  * @see com.gemstone.gemfire.cache.snapshot.SnapshotFilter#accept(Map.Entry)
  * @see java.util.Map.Entry
  */
 @Override
 public boolean accept(final Map.Entry<K, V> entry) {
   return operator.operate(leftOperand.accept(entry), rightOperand.accept(entry));
 }