
dagger.internal.DaggerCollections Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dapper Show documentation
Show all versions of dapper Show documentation
dapper annotations and utils
/*
* Copyright (C) 2014 The Dagger Authors.
*
* 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 dagger.internal;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Set;
/**
* Collection utility methods in service of Dagger internal classes. Do not use in client
* code.
*/
public final class DaggerCollections {
/**
* The maximum value for a signed 32-bit integer that is equal to a power of 2.
*/
private static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2);
private DaggerCollections() {}
/**
* Returns a new list that is pre-sized to {@code size}, or {@link Collections#emptyList()} if
* empty. The list returned is never intended to grow beyond {@code size}, so adding to a list
* when the size is 0 is an error.
*/
public static List presizedList(int size) {
if (size == 0) {
return Collections.emptyList();
}
return new ArrayList(size);
}
/**
* Returns true if at least one pair of items in {@code list} are equals.
*/
public static boolean hasDuplicates(List> list) {
if (list.size() < 2) {
return false;
}
Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy