/* * Copyright 2012 NGDATA nv * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.lilyproject.repository.api.filter; import java.util.ArrayList; import java.util.List; /** * A Filter which is an ordered list of other filters, which are evaluated with the specified * operator: {@link Operator#MUST_PASS_ALL} (= AND) or {@link Operator#MUST_PASS_ONE} (= OR). * * <p>A RecordFilterList can by itself again contain RecordFilterList's, thus enabling * nested boolean expressions.</p> */ public class RecordFilterList implements RecordFilter { public static enum Operator { MUST_PASS_ALL, MUST_PASS_ONE } private Operator operator = Operator.MUST_PASS_ALL; private List<RecordFilter> filters = new ArrayList<RecordFilter>(); public RecordFilterList() { } public RecordFilterList(Operator operator) { this.operator = operator; } public void addFilter(RecordFilter filter) { this.filters.add(filter); } public List<RecordFilter> getFilters() { return filters; } public Operator getOperator() { return operator; } public void setOperator(Operator operator) { this.operator = operator; } }