org.eclipse.collections.impl.utility.internal.package-info Maven / Gradle / Ivy
/*
* Copyright (c) 2015 Goldman Sachs.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
/**
* This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
*
* All the iteration patterns in this package are internal. It is used by iterators specialized for various collections.
*
* This package contains 10 Iteration implementations:
*
* -
* {@link org.eclipse.collections.impl.utility.internal.DefaultSpeciesNewStrategy} - creates a new instance of a collection based on the class type of collection.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.InternalArrayIterate} - a final class with static iterator methods.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.IterableIterate} - provides a few of the methods from the Smalltalk Collection Protocol.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.IteratorIterate} - provides various iteration patterns for use with {@link java.util.Iterator}.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.MutableCollectionIterate} - a final class used to chunk {@link org.eclipse.collections.api.collection.MutableCollection}.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.RandomAccessListIterate} - provides methods from the Smalltalk Collection Protocol for use with {@link java.util.ArrayList}.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.ReflectionHelper} - a utility/helper class for working with Classes and Reflection.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.SetIterables} - a class provides for set algebra operations.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.SetIterate} - a final class used for internal purposes to iterate over Set.
*
* -
* {@link org.eclipse.collections.impl.utility.internal.SortedSetIterables} - a class provides for sortedSet algebra operations.
*
*
*/
package org.eclipse.collections.impl.utility.internal;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy