blob: 05fc6a38a58f65229d65eea3f8c207bd21e8bb96 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Cloudsmith Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Cloudsmith Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ql;
import java.util.Iterator;
/**
* An expression that yields a new collection consisting of all elements of the
* <code>collection</code> for which the <code>filter</code> yields <code>true</code>.
*/
public final class Select extends CollectionFilter {
public static final String OPERATOR = "select"; //$NON-NLS-1$
public Select(Expression collection, LambdaExpression lambda) {
super(collection, lambda);
}
Object evaluate(final ExpressionContext context, final VariableScope scope, Iterator iterator) {
return new MatchIteratorFilter(Object.class, iterator) {
protected boolean isMatch(Object val) {
variable.setValue(scope, val);
return lambda.evaluate(context, scope) == Boolean.TRUE;
}
};
}
String getOperator() {
return OPERATOR;
}
}