All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.dolphinscheduler.common.utils.CollectionUtils Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
/*
 * 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.
 */

package org.apache.dolphinscheduler.common.utils;

import org.apache.commons.beanutils.BeanMap;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

/**
 * Provides utility methods and decorators for {@link Collection} instances.
 * 

* Various utility methods might put the input objects into a Set/Map/Bag. In case * the input objects override {@link Object#equals(Object)}, it is mandatory that * the general contract of the {@link Object#hashCode()} method is maintained. *

* NOTE: From 4.0, method parameters will take {@link Iterable} objects when possible. * * @version $Id: CollectionUtils.java 1686855 2015-06-22 13:00:27Z tn $ * @since 1.0 */ public class CollectionUtils { private CollectionUtils() { throw new UnsupportedOperationException("Construct CollectionUtils"); } /** * returns {@code true} iff the given {@link Collection}s contain * exactly the same elements with exactly the same cardinalities. * * @param a the first collection * @param b the second collection * @return Returns true iff the given Collections contain exactly the same elements with exactly the same cardinalities. * That is, iff the cardinality of e in a is equal to the cardinality of e in b, for each element e in a or b. */ public static boolean equalLists(Collection a, Collection b) { if (a == null && b == null) { return true; } if (a == null || b == null) { return false; } return org.apache.commons.collections.CollectionUtils.isEqualCollection(a, b); } /** * Removes certain attributes of each object in the list * * @param originList origin list * @param exclusionSet exclusion set * @param T * @return removes certain attributes of each object in the list */ public static List> getListByExclusion(List originList, Set exclusionSet) { List> instanceList = new ArrayList<>(); if (exclusionSet == null) { exclusionSet = new HashSet<>(); } if (originList == null) { return instanceList; } Map instanceMap; for (T instance : originList) { BeanMap beanMap = new BeanMap(instance); instanceMap = new LinkedHashMap<>(16, 0.75f, true); for (Map.Entry entry : beanMap.entrySet()) { if (exclusionSet.contains(entry.getKey())) { continue; } instanceMap.put((String) entry.getKey(), entry.getValue()); } instanceList.add(instanceMap); } return instanceList; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy