Remove @version tag as this component has been migrated to git
This commit is contained in:
parent
8dceb1c85f
commit
29d2e93966
|
@ -38,7 +38,6 @@ import java.util.EmptyStackException;
|
||||||
*
|
*
|
||||||
* @see java.util.Stack
|
* @see java.util.Stack
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id$
|
|
||||||
* @deprecated use {@link java.util.ArrayDeque} instead (available from Java 1.6)
|
* @deprecated use {@link java.util.ArrayDeque} instead (available from Java 1.6)
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
|
|
@ -40,7 +40,6 @@ import java.util.Set;
|
||||||
*
|
*
|
||||||
* @param <E> the type held in the bag
|
* @param <E> the type held in the bag
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Bag<E> extends Collection<E> {
|
public interface Bag<E> extends Collection<E> {
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,6 @@ import org.apache.commons.collections4.bag.UnmodifiableSortedBag;
|
||||||
* Provides utility methods and decorators for {@link Bag} and {@link SortedBag} instances.
|
* Provides utility methods and decorators for {@link Bag} and {@link SortedBag} instances.
|
||||||
*
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class BagUtils {
|
public class BagUtils {
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ import java.util.Set;
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface BidiMap<K, V> extends IterableMap<K, V> {
|
public interface BidiMap<K, V> extends IterableMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,6 @@ import java.util.Collection;
|
||||||
* @see CollectionUtils#maxSize
|
* @see CollectionUtils#maxSize
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface BoundedCollection<E> extends Collection<E> {
|
public interface BoundedCollection<E> extends Collection<E> {
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ package org.apache.commons.collections4;
|
||||||
* associated with the maximum number of elements.
|
* associated with the maximum number of elements.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface BoundedMap<K, V> extends IterableMap<K, V> {
|
public interface BoundedMap<K, V> extends IterableMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,6 @@ package org.apache.commons.collections4;
|
||||||
*
|
*
|
||||||
* @param <T> the type that the closure acts on
|
* @param <T> the type that the closure acts on
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Closure<T> {
|
public interface Closure<T> {
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,6 @@ import org.apache.commons.collections4.functors.WhileClosure;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class ClosureUtils {
|
public class ClosureUtils {
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,6 @@ import org.apache.commons.collections4.iterators.PermutationIterator;
|
||||||
* NOTE: From 4.0, method parameters will take {@link Iterable} objects when possible.
|
* NOTE: From 4.0, method parameters will take {@link Iterable} objects when possible.
|
||||||
*
|
*
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class CollectionUtils {
|
public class CollectionUtils {
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,6 @@ import org.apache.commons.collections4.comparators.TransformingComparator;
|
||||||
* in the <code>comparators</code> subpackage.
|
* in the <code>comparators</code> subpackage.
|
||||||
*
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class ComparatorUtils {
|
public class ComparatorUtils {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,6 @@ import org.apache.commons.collections4.iterators.EnumerationIterator;
|
||||||
* Provides utility methods for {@link Enumeration} instances.
|
* Provides utility methods for {@link Enumeration} instances.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class EnumerationUtils {
|
public class EnumerationUtils {
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ package org.apache.commons.collections4;
|
||||||
*
|
*
|
||||||
* @param <T> the types of object this {@link Equator} can evaluate.
|
* @param <T> the types of object this {@link Equator} can evaluate.
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Equator<T> {
|
public interface Equator<T> {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -29,7 +29,6 @@ package org.apache.commons.collections4;
|
||||||
* @param <T> the type that the factory creates
|
* @param <T> the type that the factory creates
|
||||||
*
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Factory<T> {
|
public interface Factory<T> {
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,6 @@ import org.apache.commons.collections4.functors.PrototypeFactory;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class FactoryUtils {
|
public class FactoryUtils {
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,6 @@ import org.apache.commons.collections4.iterators.SingletonIterator;
|
||||||
*
|
*
|
||||||
* @param <E> the element type
|
* @param <E> the element type
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class FluentIterable<E> implements Iterable<E> {
|
public class FluentIterable<E> implements Iterable<E> {
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,6 @@ package org.apache.commons.collections4;
|
||||||
* If required, a root cause error can be wrapped within this one.
|
* If required, a root cause error can be wrapped within this one.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class FunctorException extends RuntimeException {
|
public class FunctorException extends RuntimeException {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,6 @@ import java.util.Set;
|
||||||
* The "read" subset of the {@link java.util.Map} interface.
|
* The "read" subset of the {@link java.util.Map} interface.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*
|
*
|
||||||
* @see Put
|
* @see Put
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -20,7 +20,6 @@ package org.apache.commons.collections4;
|
||||||
* The "read" subset of the {@link java.util.Map} interface.
|
* The "read" subset of the {@link java.util.Map} interface.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*
|
*
|
||||||
* @see Put
|
* @see Put
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -37,7 +37,6 @@ import java.util.Map;
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface IterableMap<K, V> extends Map<K, V>, Put<K, V>, IterableGet<K, V> {
|
public interface IterableMap<K, V> extends Map<K, V>, Put<K, V>, IterableGet<K, V> {
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,6 @@ import java.util.SortedMap;
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface IterableSortedMap<K, V> extends SortedMap<K, V>, OrderedMap<K, V> {
|
public interface IterableSortedMap<K, V> extends SortedMap<K, V>, OrderedMap<K, V> {
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,6 @@ import org.apache.commons.collections4.iterators.UniqueFilterIterator;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class IterableUtils {
|
public class IterableUtils {
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,6 @@ import org.w3c.dom.NodeList;
|
||||||
* instances. The implementations are provided in the iterators subpackage.
|
* instances. The implementations are provided in the iterators subpackage.
|
||||||
*
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class IteratorUtils {
|
public class IteratorUtils {
|
||||||
// validation is done in this class in certain cases because the
|
// validation is done in this class in certain cases because the
|
||||||
|
|
|
@ -26,7 +26,6 @@ package org.apache.commons.collections4;
|
||||||
* @param <K> the type of the key
|
* @param <K> the type of the key
|
||||||
* @param <V> the type of the value
|
* @param <V> the type of the value
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface KeyValue<K, V> {
|
public interface KeyValue<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ import org.apache.commons.collections4.sequence.SequencesComparator;
|
||||||
* Provides utility methods and decorators for {@link List} instances.
|
* Provides utility methods and decorators for {@link List} instances.
|
||||||
*
|
*
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class ListUtils {
|
public class ListUtils {
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,6 @@ import java.util.List;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface ListValuedMap<K, V> extends MultiValuedMap<K, V> {
|
public interface ListValuedMap<K, V> extends MultiValuedMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,6 @@ import java.util.Iterator;
|
||||||
* @param <K> the type of the keys in the map
|
* @param <K> the type of the keys in the map
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface MapIterator<K, V> extends Iterator<K> {
|
public interface MapIterator<K, V> extends Iterator<K> {
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,6 @@ import org.apache.commons.collections4.map.UnmodifiableSortedMap;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public class MapUtils {
|
public class MapUtils {
|
||||||
|
|
|
@ -40,7 +40,6 @@ import java.util.Collection;
|
||||||
* as they were defined in the superinterface <code>Map</code> anyway.
|
* as they were defined in the superinterface <code>Map</code> anyway.
|
||||||
*
|
*
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id$
|
|
||||||
* @deprecated since 4.1, use {@link MultiValuedMap} instead
|
* @deprecated since 4.1, use {@link MultiValuedMap} instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
|
|
@ -39,7 +39,6 @@ import org.apache.commons.collections4.multimap.UnmodifiableMultiValuedMap;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class MultiMapUtils {
|
public class MultiMapUtils {
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,6 @@ import java.util.Set;
|
||||||
*
|
*
|
||||||
* @param <E> the type held in the multiset
|
* @param <E> the type held in the multiset
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface MultiSet<E> extends Collection<E> {
|
public interface MultiSet<E> extends Collection<E> {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,6 @@ import org.apache.commons.collections4.multiset.UnmodifiableMultiSet;
|
||||||
* Provides utility methods and decorators for {@link MultiSet} instances.
|
* Provides utility methods and decorators for {@link MultiSet} instances.
|
||||||
*
|
*
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class MultiSetUtils {
|
public class MultiSetUtils {
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,6 @@ import java.util.Set;
|
||||||
* <p>
|
* <p>
|
||||||
*
|
*
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface MultiValuedMap<K, V> {
|
public interface MultiValuedMap<K, V> {
|
||||||
// Query operations
|
// Query operations
|
||||||
|
|
|
@ -27,7 +27,6 @@ package org.apache.commons.collections4;
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface OrderedBidiMap<K, V> extends BidiMap<K, V>, OrderedMap<K, V> {
|
public interface OrderedBidiMap<K, V> extends BidiMap<K, V>, OrderedMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,6 @@ import java.util.Iterator;
|
||||||
*
|
*
|
||||||
* @param <E> the type to iterate over
|
* @param <E> the type to iterate over
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface OrderedIterator<E> extends Iterator<E> {
|
public interface OrderedIterator<E> extends Iterator<E> {
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ package org.apache.commons.collections4;
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface OrderedMap<K, V> extends IterableMap<K, V> {
|
public interface OrderedMap<K, V> extends IterableMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ package org.apache.commons.collections4;
|
||||||
* @param <K> the type of the keys in the map
|
* @param <K> the type of the keys in the map
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface OrderedMapIterator<K, V> extends MapIterator<K, V>, OrderedIterator<K> {
|
public interface OrderedMapIterator<K, V> extends MapIterator<K, V>, OrderedIterator<K> {
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@ package org.apache.commons.collections4;
|
||||||
* @param <T> the type that the predicate queries
|
* @param <T> the type that the predicate queries
|
||||||
*
|
*
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Predicate<T> {
|
public interface Predicate<T> {
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,6 @@ import org.apache.commons.collections4.functors.UniquePredicate;
|
||||||
* All the supplied predicates are Serializable.
|
* All the supplied predicates are Serializable.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class PredicateUtils {
|
public class PredicateUtils {
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,6 @@ import java.util.Map;
|
||||||
* {@link Object}.
|
* {@link Object}.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*
|
*
|
||||||
* @see Get
|
* @see Get
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -27,7 +27,6 @@ import org.apache.commons.collections4.queue.UnmodifiableQueue;
|
||||||
* Provides utility methods and decorators for {@link Queue} instances.
|
* Provides utility methods and decorators for {@link Queue} instances.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class QueueUtils {
|
public class QueueUtils {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,6 @@ import java.util.Iterator;
|
||||||
*
|
*
|
||||||
* @param <E> the type to iterate over
|
* @param <E> the type to iterate over
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface ResettableIterator<E> extends Iterator<E> {
|
public interface ResettableIterator<E> extends Iterator<E> {
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,6 @@ import java.util.ListIterator;
|
||||||
*
|
*
|
||||||
* @param <E> the type to iterate over
|
* @param <E> the type to iterate over
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface ResettableListIterator<E> extends ListIterator<E>, ResettableIterator<E>, OrderedIterator<E> {
|
public interface ResettableListIterator<E> extends ListIterator<E>, ResettableIterator<E>, OrderedIterator<E> {
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,6 @@ import org.apache.commons.collections4.set.UnmodifiableSortedSet;
|
||||||
* {@link Set} and {@link SortedSet} instances.
|
* {@link Set} and {@link SortedSet} instances.
|
||||||
*
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class SetUtils {
|
public class SetUtils {
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,6 @@ import java.util.Set;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 4.1
|
* @since 4.1
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface SetValuedMap<K, V> extends MultiValuedMap<K, V> {
|
public interface SetValuedMap<K, V> extends MultiValuedMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ import java.util.Comparator;
|
||||||
*
|
*
|
||||||
* @param <E> the type to iterate over
|
* @param <E> the type to iterate over
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface SortedBag<E> extends Bag<E> {
|
public interface SortedBag<E> extends Bag<E> {
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,6 @@ import java.util.SortedMap;
|
||||||
* @param <K> the type of the keys in the map
|
* @param <K> the type of the keys in the map
|
||||||
* @param <V> the type of the values in the map
|
* @param <V> the type of the values in the map
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface SortedBidiMap<K, V> extends OrderedBidiMap<K, V>, SortedMap<K, V> {
|
public interface SortedBidiMap<K, V> extends OrderedBidiMap<K, V>, SortedMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
||||||
* and/or {@link Get} but not {@link Map}.
|
* and/or {@link Get} but not {@link Map}.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*
|
*
|
||||||
* @see Get
|
* @see Get
|
||||||
* @see Put
|
* @see Put
|
||||||
|
|
|
@ -33,7 +33,6 @@ package org.apache.commons.collections4;
|
||||||
* @param <O> the output type from the transformer
|
* @param <O> the output type from the transformer
|
||||||
*
|
*
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Transformer<I, O> {
|
public interface Transformer<I, O> {
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,6 @@ import org.apache.commons.collections4.functors.SwitchTransformer;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TransformerUtils {
|
public class TransformerUtils {
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,6 @@ import java.util.SortedMap;
|
||||||
* more information, see <a href="http://en.wikipedia.org/wiki/Trie">Tries</a>.
|
* more information, see <a href="http://en.wikipedia.org/wiki/Trie">Tries</a>.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Trie<K, V> extends IterableSortedMap<K, V> {
|
public interface Trie<K, V> extends IterableSortedMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,6 @@ import org.apache.commons.collections4.trie.UnmodifiableTrie;
|
||||||
* A collection of {@link Trie} utilities.
|
* A collection of {@link Trie} utilities.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TrieUtils {
|
public class TrieUtils {
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@ package org.apache.commons.collections4;
|
||||||
* then the interface won't be there.
|
* then the interface won't be there.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public interface Unmodifiable {
|
public interface Unmodifiable {
|
||||||
// marker interface - no methods to implement
|
// marker interface - no methods to implement
|
||||||
|
|
|
@ -27,7 +27,6 @@ import org.apache.commons.collections4.collection.AbstractCollectionDecorator;
|
||||||
* Methods are forwarded directly to the decorated bag.
|
* Methods are forwarded directly to the decorated bag.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractBagDecorator<E>
|
public abstract class AbstractBagDecorator<E>
|
||||||
extends AbstractCollectionDecorator<E> implements Bag<E> {
|
extends AbstractCollectionDecorator<E> implements Bag<E> {
|
||||||
|
|
|
@ -39,7 +39,6 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
||||||
* number of occurrences of that element in the bag.
|
* number of occurrences of that element in the bag.
|
||||||
*
|
*
|
||||||
* @since 3.0 (previously DefaultMapBag v2.0)
|
* @since 3.0 (previously DefaultMapBag v2.0)
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractMapBag<E> implements Bag<E> {
|
public abstract class AbstractMapBag<E> implements Bag<E> {
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@ import org.apache.commons.collections4.SortedBag;
|
||||||
* Methods are forwarded directly to the decorated bag.
|
* Methods are forwarded directly to the decorated bag.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractSortedBagDecorator<E>
|
public abstract class AbstractSortedBagDecorator<E>
|
||||||
extends AbstractBagDecorator<E> implements SortedBag<E> {
|
extends AbstractBagDecorator<E> implements SortedBag<E> {
|
||||||
|
|
|
@ -36,7 +36,6 @@ import org.apache.commons.collections4.Bag;
|
||||||
* @see Bag
|
* @see Bag
|
||||||
* @param <E> the type held in the bag
|
* @param <E> the type held in the bag
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class CollectionBag<E> extends AbstractBagDecorator<E> {
|
public final class CollectionBag<E> extends AbstractBagDecorator<E> {
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,6 @@ import org.apache.commons.collections4.SortedBag;
|
||||||
* Decorates another {@link SortedBag} to comply with the Collection contract.
|
* Decorates another {@link SortedBag} to comply with the Collection contract.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class CollectionSortedBag<E> extends AbstractSortedBagDecorator<E> {
|
public final class CollectionSortedBag<E> extends AbstractSortedBagDecorator<E> {
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,6 @@ import java.util.HashMap;
|
||||||
* {@link Collection} interface specification.
|
* {@link Collection} interface specification.
|
||||||
*
|
*
|
||||||
* @since 3.0 (previously in main package v2.0)
|
* @since 3.0 (previously in main package v2.0)
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class HashBag<E> extends AbstractMapBag<E> implements Serializable {
|
public class HashBag<E> extends AbstractMapBag<E> implements Serializable {
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,6 @@ import org.apache.commons.collections4.collection.PredicatedCollection;
|
||||||
* This class is Serializable from Commons Collections 3.1.
|
* This class is Serializable from Commons Collections 3.1.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class PredicatedBag<E> extends PredicatedCollection<E> implements Bag<E> {
|
public class PredicatedBag<E> extends PredicatedCollection<E> implements Bag<E> {
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,6 @@ import org.apache.commons.collections4.SortedBag;
|
||||||
* This class is Serializable from Commons Collections 3.1.
|
* This class is Serializable from Commons Collections 3.1.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class PredicatedSortedBag<E> extends PredicatedBag<E> implements SortedBag<E> {
|
public class PredicatedSortedBag<E> extends PredicatedBag<E> implements SortedBag<E> {
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@ import org.apache.commons.collections4.collection.SynchronizedCollection;
|
||||||
* This class is Serializable from Commons Collections 3.1.
|
* This class is Serializable from Commons Collections 3.1.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class SynchronizedBag<E> extends SynchronizedCollection<E> implements Bag<E> {
|
public class SynchronizedBag<E> extends SynchronizedCollection<E> implements Bag<E> {
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@ import org.apache.commons.collections4.SortedBag;
|
||||||
* This class is Serializable from Commons Collections 3.1.
|
* This class is Serializable from Commons Collections 3.1.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class SynchronizedSortedBag<E> extends SynchronizedBag<E> implements SortedBag<E> {
|
public class SynchronizedSortedBag<E> extends SynchronizedBag<E> implements SortedBag<E> {
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.commons.collections4.set.TransformedSet;
|
||||||
* This class is Serializable from Commons Collections 3.1.
|
* This class is Serializable from Commons Collections 3.1.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TransformedBag<E> extends TransformedCollection<E> implements Bag<E> {
|
public class TransformedBag<E> extends TransformedCollection<E> implements Bag<E> {
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,6 @@ import org.apache.commons.collections4.Transformer;
|
||||||
* This class is Serializable from Commons Collections 3.1.
|
* This class is Serializable from Commons Collections 3.1.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TransformedSortedBag<E> extends TransformedBag<E> implements SortedBag<E> {
|
public class TransformedSortedBag<E> extends TransformedBag<E> implements SortedBag<E> {
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ import org.apache.commons.collections4.SortedBag;
|
||||||
* javadoc carefully as several methods violate the {@link Collection} interface specification.
|
* javadoc carefully as several methods violate the {@link Collection} interface specification.
|
||||||
*
|
*
|
||||||
* @since 3.0 (previously in main package v2.0)
|
* @since 3.0 (previously in main package v2.0)
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TreeBag<E> extends AbstractMapBag<E> implements SortedBag<E>, Serializable {
|
public class TreeBag<E> extends AbstractMapBag<E> implements SortedBag<E>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,6 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
||||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class UnmodifiableBag<E>
|
public final class UnmodifiableBag<E>
|
||||||
extends AbstractBagDecorator<E> implements Unmodifiable {
|
extends AbstractBagDecorator<E> implements Unmodifiable {
|
||||||
|
|
|
@ -36,7 +36,6 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
||||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class UnmodifiableSortedBag<E>
|
public final class UnmodifiableSortedBag<E>
|
||||||
extends AbstractSortedBagDecorator<E> implements Unmodifiable {
|
extends AbstractSortedBagDecorator<E> implements Unmodifiable {
|
||||||
|
|
|
@ -34,6 +34,5 @@
|
||||||
* <li>Collection - ensures compliance with the java.util.Collection contract
|
* <li>Collection - ensures compliance with the java.util.Collection contract
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
package org.apache.commons.collections4.bag;
|
package org.apache.commons.collections4.bag;
|
||||||
|
|
|
@ -35,7 +35,6 @@ import org.apache.commons.collections4.map.AbstractMapDecorator;
|
||||||
* But, you might want that loophole, so this class is kept simple.
|
* But, you might want that loophole, so this class is kept simple.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractBidiMapDecorator<K, V>
|
public abstract class AbstractBidiMapDecorator<K, V>
|
||||||
extends AbstractMapDecorator<K, V> implements BidiMap<K, V> {
|
extends AbstractMapDecorator<K, V> implements BidiMap<K, V> {
|
||||||
|
|
|
@ -37,7 +37,6 @@ import org.apache.commons.collections4.keyvalue.AbstractMapEntryDecorator;
|
||||||
* @see DualHashBidiMap
|
* @see DualHashBidiMap
|
||||||
* @see DualTreeBidiMap
|
* @see DualTreeBidiMap
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractDualBidiMap<K, V> implements BidiMap<K, V> {
|
public abstract class AbstractDualBidiMap<K, V> implements BidiMap<K, V> {
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,6 @@ import org.apache.commons.collections4.OrderedMapIterator;
|
||||||
* But, you might want that loophole, so this class is kept simple.
|
* But, you might want that loophole, so this class is kept simple.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractOrderedBidiMapDecorator<K, V>
|
public abstract class AbstractOrderedBidiMapDecorator<K, V>
|
||||||
extends AbstractBidiMapDecorator<K, V>
|
extends AbstractBidiMapDecorator<K, V>
|
||||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.commons.collections4.SortedBidiMap;
|
||||||
* But, you might want that loophole, so this class is kept simple.
|
* But, you might want that loophole, so this class is kept simple.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractSortedBidiMapDecorator<K, V>
|
public abstract class AbstractSortedBidiMapDecorator<K, V>
|
||||||
extends AbstractOrderedBidiMapDecorator<K, V> implements SortedBidiMap<K, V> {
|
extends AbstractOrderedBidiMapDecorator<K, V> implements SortedBidiMap<K, V> {
|
||||||
|
|
|
@ -37,7 +37,6 @@ import org.apache.commons.collections4.BidiMap;
|
||||||
* and the flawed <code>createMap</code> method is ignored.
|
* and the flawed <code>createMap</code> method is ignored.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class DualHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> implements Serializable {
|
public class DualHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> implements Serializable {
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@ import org.apache.commons.collections4.BidiMap;
|
||||||
* Two <code>LinkedHashMap</code> instances are used in this class.
|
* Two <code>LinkedHashMap</code> instances are used in this class.
|
||||||
* This provides fast lookups at the expense of storing two sets of map entries and two linked lists.
|
* This provides fast lookups at the expense of storing two sets of map entries and two linked lists.
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public class DualLinkedHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> implements Serializable {
|
public class DualLinkedHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> implements Serializable {
|
||||||
|
|
|
@ -50,7 +50,6 @@ import org.apache.commons.collections4.map.AbstractSortedMapDecorator;
|
||||||
* and the flawed <code>createMap</code> method is ignored.
|
* and the flawed <code>createMap</code> method is ignored.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class DualTreeBidiMap<K, V> extends AbstractDualBidiMap<K, V>
|
public class DualTreeBidiMap<K, V> extends AbstractDualBidiMap<K, V>
|
||||||
implements SortedBidiMap<K, V>, Serializable {
|
implements SortedBidiMap<K, V>, Serializable {
|
||||||
|
|
|
@ -73,7 +73,6 @@ import org.apache.commons.collections4.keyvalue.UnmodifiableMapEntry;
|
||||||
* UnsupportedOperationException on attempts to call that method.
|
* UnsupportedOperationException on attempts to call that method.
|
||||||
*
|
*
|
||||||
* @since 3.0 (previously DoubleOrderedMap v2.0)
|
* @since 3.0 (previously DoubleOrderedMap v2.0)
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TreeBidiMap<K extends Comparable<K>, V extends Comparable<V>>
|
public class TreeBidiMap<K extends Comparable<K>, V extends Comparable<V>>
|
||||||
implements OrderedBidiMap<K, V>, Serializable {
|
implements OrderedBidiMap<K, V>, Serializable {
|
||||||
|
|
|
@ -32,7 +32,6 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
||||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class UnmodifiableBidiMap<K, V>
|
public final class UnmodifiableBidiMap<K, V>
|
||||||
extends AbstractBidiMapDecorator<K, V> implements Unmodifiable {
|
extends AbstractBidiMapDecorator<K, V> implements Unmodifiable {
|
||||||
|
|
|
@ -32,7 +32,6 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
||||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class UnmodifiableOrderedBidiMap<K, V>
|
public final class UnmodifiableOrderedBidiMap<K, V>
|
||||||
extends AbstractOrderedBidiMapDecorator<K, V> implements Unmodifiable {
|
extends AbstractOrderedBidiMapDecorator<K, V> implements Unmodifiable {
|
||||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
||||||
* Attempts to modify it will result in an {@link UnsupportedOperationException}.
|
* Attempts to modify it will result in an {@link UnsupportedOperationException}.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class UnmodifiableSortedBidiMap<K, V>
|
public final class UnmodifiableSortedBidiMap<K, V>
|
||||||
extends AbstractSortedBidiMapDecorator<K, V> implements Unmodifiable {
|
extends AbstractSortedBidiMapDecorator<K, V> implements Unmodifiable {
|
||||||
|
|
|
@ -36,6 +36,5 @@
|
||||||
* <li>Unmodifiable - ensures the map cannot be altered
|
* <li>Unmodifiable - ensures the map cannot be altered
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
package org.apache.commons.collections4.bidimap;
|
package org.apache.commons.collections4.bidimap;
|
||||||
|
|
|
@ -50,7 +50,6 @@ import java.util.Iterator;
|
||||||
*
|
*
|
||||||
* @param <E> the type of the elements in the collection
|
* @param <E> the type of the elements in the collection
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractCollectionDecorator<E>
|
public abstract class AbstractCollectionDecorator<E>
|
||||||
implements Collection<E>, Serializable {
|
implements Collection<E>, Serializable {
|
||||||
|
|
|
@ -37,7 +37,6 @@ import org.apache.commons.collections4.list.UnmodifiableList;
|
||||||
*
|
*
|
||||||
* @param <E> the type of the elements in the collection
|
* @param <E> the type of the elements in the collection
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class CompositeCollection<E> implements Collection<E>, Serializable {
|
public class CompositeCollection<E> implements Collection<E>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ import org.apache.commons.collections4.map.MultiValueMap;
|
||||||
* @param <C> the type of object in the collection.
|
* @param <C> the type of object in the collection.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class IndexedCollection<K, C> extends AbstractCollectionDecorator<C> {
|
public class IndexedCollection<K, C> extends AbstractCollectionDecorator<C> {
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,6 @@ import org.apache.commons.collections4.set.PredicatedSet;
|
||||||
*
|
*
|
||||||
* @param <E> the type of the elements in the collection
|
* @param <E> the type of the elements in the collection
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class PredicatedCollection<E> extends AbstractCollectionDecorator<E> {
|
public class PredicatedCollection<E> extends AbstractCollectionDecorator<E> {
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,6 @@ import java.util.Iterator;
|
||||||
*
|
*
|
||||||
* @param <E> the type of the elements in the collection
|
* @param <E> the type of the elements in the collection
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class SynchronizedCollection<E> implements Collection<E>, Serializable {
|
public class SynchronizedCollection<E> implements Collection<E>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.commons.collections4.Transformer;
|
||||||
*
|
*
|
||||||
* @param <E> the type of the elements in the collection
|
* @param <E> the type of the elements in the collection
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class TransformedCollection<E> extends AbstractCollectionDecorator<E> {
|
public class TransformedCollection<E> extends AbstractCollectionDecorator<E> {
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,6 @@ import org.apache.commons.collections4.iterators.UnmodifiableIterator;
|
||||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class UnmodifiableBoundedCollection<E> extends AbstractCollectionDecorator<E>
|
public final class UnmodifiableBoundedCollection<E> extends AbstractCollectionDecorator<E>
|
||||||
implements BoundedCollection<E>, Unmodifiable {
|
implements BoundedCollection<E>, Unmodifiable {
|
||||||
|
|
|
@ -31,7 +31,6 @@ import org.apache.commons.collections4.iterators.UnmodifiableIterator;
|
||||||
*
|
*
|
||||||
* @param <E> the type of the elements in the collection
|
* @param <E> the type of the elements in the collection
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class UnmodifiableCollection<E>
|
public final class UnmodifiableCollection<E>
|
||||||
extends AbstractCollectionDecorator<E>
|
extends AbstractCollectionDecorator<E>
|
||||||
|
|
|
@ -31,6 +31,5 @@
|
||||||
* <li>Indexed - provides a map-like view onto another collection
|
* <li>Indexed - provides a map-like view onto another collection
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
package org.apache.commons.collections4.collection;
|
package org.apache.commons.collections4.collection;
|
||||||
|
|
|
@ -28,7 +28,6 @@ import java.util.Comparator;
|
||||||
* @see #booleanComparator(boolean)
|
* @see #booleanComparator(boolean)
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class BooleanComparator implements Comparator<Boolean>, Serializable {
|
public final class BooleanComparator implements Comparator<Boolean>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,6 @@ import java.util.Comparator;
|
||||||
* details.
|
* details.
|
||||||
*
|
*
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id$
|
|
||||||
*
|
*
|
||||||
* @see java.util.Collections#reverseOrder()
|
* @see java.util.Collections#reverseOrder()
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -45,7 +45,6 @@ import java.util.List;
|
||||||
* multiple comparisons after all the setup operations are complete.
|
* multiple comparisons after all the setup operations are complete.
|
||||||
*
|
*
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class ComparatorChain<E> implements Comparator<E>, Serializable {
|
public class ComparatorChain<E> implements Comparator<E>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,6 @@ import java.util.Map;
|
||||||
* This class is Serializable from Commons Collections 4.0.
|
* This class is Serializable from Commons Collections 4.0.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class FixedOrderComparator<T> implements Comparator<T>, Serializable {
|
public class FixedOrderComparator<T> implements Comparator<T>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@ import org.apache.commons.collections4.ComparatorUtils;
|
||||||
* other objects.
|
* other objects.
|
||||||
*
|
*
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public class NullComparator<E> implements Comparator<E>, Serializable {
|
public class NullComparator<E> implements Comparator<E>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@ import org.apache.commons.collections4.ComparatorUtils;
|
||||||
* to its {@link #compare(Object, Object) compare} method.
|
* to its {@link #compare(Object, Object) compare} method.
|
||||||
*
|
*
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id$
|
|
||||||
*
|
*
|
||||||
* @see java.util.Collections#reverseOrder()
|
* @see java.util.Collections#reverseOrder()
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -30,7 +30,6 @@ import org.apache.commons.collections4.Transformer;
|
||||||
* This class is Serializable from Commons Collections 4.0.
|
* This class is Serializable from Commons Collections 4.0.
|
||||||
*
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
* @version $Id$
|
|
||||||
*
|
*
|
||||||
* @see org.apache.commons.collections4.Transformer
|
* @see org.apache.commons.collections4.Transformer
|
||||||
* @see org.apache.commons.collections4.comparators.ComparableComparator
|
* @see org.apache.commons.collections4.comparators.ComparableComparator
|
||||||
|
|
|
@ -23,6 +23,5 @@
|
||||||
* which is a single class that uses static methods to construct instances
|
* which is a single class that uses static methods to construct instances
|
||||||
* of the classes in this package.
|
* of the classes in this package.
|
||||||
*
|
*
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
package org.apache.commons.collections4.comparators;
|
package org.apache.commons.collections4.comparators;
|
||||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.commons.collections4.Predicate;
|
||||||
* Abstract base class for quantification predicates, e.g. All, Any, None.
|
* Abstract base class for quantification predicates, e.g. All, Any, None.
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractQuantifierPredicate<T> implements PredicateDecorator<T>, Serializable {
|
public abstract class AbstractQuantifierPredicate<T> implements PredicateDecorator<T>, Serializable {
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,6 @@ import org.apache.commons.collections4.Predicate;
|
||||||
* threw an exception.
|
* threw an exception.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class AllPredicate<T> extends AbstractQuantifierPredicate<T> {
|
public final class AllPredicate<T> extends AbstractQuantifierPredicate<T> {
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.commons.collections4.Predicate;
|
||||||
* Predicate implementation that returns true if both the predicates return true.
|
* Predicate implementation that returns true if both the predicates return true.
|
||||||
*
|
*
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
* @version $Id$
|
|
||||||
*/
|
*/
|
||||||
public final class AndPredicate<T> implements PredicateDecorator<T>, Serializable {
|
public final class AndPredicate<T> implements PredicateDecorator<T>, Serializable {
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue