org.qas.api.internal.util.google.collect.Collections2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
/*
* Copyright (C) 2008 The Guava 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 org.qas.api.internal.util.google.collect;
import java.util.Collection;
/**
* Provides static methods for working with {@code Collection} instances.
*
* @author Chris Povirk
* @author Mike Bostock
* @author Jared Levy
* @author Dzung Nguyen
* @version $Id Collections2 2014-03-26 22:32:30z dungvnguyen $
* @since 1.0
*/
public final class Collections2 {
//~ class members ===========================================================
private Collections2() {}
/**
* Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557
*/
static Collection cast(Iterable iterable) {
return (Collection) iterable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy