Java List Merge mergeFilterLists(List childFilters, List parentFilters)

Here you can find the source of mergeFilterLists(List childFilters, List parentFilters)

Description

merge Filter Lists

License

Apache License

Declaration

public static void mergeFilterLists(List<String> childFilters, List<String> parentFilters) 

Method Source Code

//package com.java2s;
/*/*from   w w w. ja v  a  2s  .  c  om*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 */

import java.util.List;

public class Main {
    public static void mergeFilterLists(List<String> childFilters, List<String> parentFilters) {
        for (String f : parentFilters) {
            if (!childFilters.contains(f)) {
                childFilters.add(f);
            }
        }
    }
}

Related

  1. mergeData(List lstMain, List lstData, List lstKey)
  2. mergedView(final List left, final List right)
  3. mergeErrorMsgList(List errorMsgs)
  4. mergeException(List t)
  5. mergeExcludedFieldLists(String[] superClassExcludes, String[] localClassExcludes)
  6. mergeHierarchicalAndFlatDimensions( Collection> hierachicalDimensions, Collection> flatDimensions)
  7. mergeIdAndStrings(Long accountId, Long workspaceId, List strs)
  8. mergeIntegerResult(List result)
  9. mergeList(List sourceList, List resultList, Set filterSet)