net.openhft.chronicle.testframework.Combination Maven / Gradle / Ivy
/*
*
* Copyright (c) 2006-2020, Speedment, Inc. All Rights Reserved.
*
* 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 net.openhft.chronicle.testframework;
import net.openhft.chronicle.testframework.internal.CombinationUtil;
import java.util.Collection;
import java.util.Set;
import java.util.stream.Stream;
/**
* General Combination support. The class eagerly calculates all combinations.
*
* @author Per Minborg
*/
public final class Combination {
// Suppresses default constructor, ensuring non-instantiability.
private Combination() {}
/**
* Creates and returns all possible combinations of the given elements.
*
* The order of the combinations in the stream is unspecified.
*
* @param element type
* @param items to combine
* @return all possible combinations of the given elements
*/
@SafeVarargs
@SuppressWarnings("varargs") // Creating a Set from an array is safe
public static Stream> of(final T... items) {
return CombinationUtil.of(items);
}
/**
* Creates and returns all possible combinations of the given elements.
*
* The order of the combinations in the stream is unspecified.
*
* @param element type
* @param items to combine
* @return all possible combinations of the given elements
*/
public static Stream> of(final Collection items) {
return CombinationUtil.of(items);
}
}