| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AbstractLongCollection |
|
| 2.357142857142857;2.357 |
| 1 | /* | |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one or more | |
| 3 | * contributor license agreements. See the NOTICE file distributed with | |
| 4 | * this work for additional information regarding copyright ownership. | |
| 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 | |
| 6 | * (the "License"); you may not use this file except in compliance with | |
| 7 | * the License. You may obtain a copy of the License at | |
| 8 | * | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 | |
| 10 | * | |
| 11 | * Unless required by applicable law or agreed to in writing, software | |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 14 | * See the License for the specific language governing permissions and | |
| 15 | * limitations under the License. | |
| 16 | */ | |
| 17 | package org.apache.commons.collections.primitives; | |
| 18 | ||
| 19 | /** | |
| 20 | * Abstract base class for {@link LongCollection}s. | |
| 21 | * <p /> | |
| 22 | * Read-only subclasses must override {@link #iterator} | |
| 23 | * and {@link #size}. Mutable subclasses | |
| 24 | * should also override {@link #add} and | |
| 25 | * {@link LongIterator#remove LongIterator.remove}. | |
| 26 | * All other methods have at least some base implementation | |
| 27 | * derived from these. Subclasses may choose to override | |
| 28 | * these methods to provide a more efficient implementation. | |
| 29 | * | |
| 30 | * @since Commons Primitives 1.0 | |
| 31 | * @version $Revision: 480460 $ $Date: 2006-11-29 03:14:21 -0500 (Wed, 29 Nov 2006) $ | |
| 32 | * | |
| 33 | * @author Rodney Waldhoff | |
| 34 | */ | |
| 35 | public abstract class AbstractLongCollection implements LongCollection { | |
| 36 | public abstract LongIterator iterator(); | |
| 37 | public abstract int size(); | |
| 38 | ||
| 39 | 1355 | protected AbstractLongCollection() { } |
| 40 | ||
| 41 | /** Unsupported in this base implementation. */ | |
| 42 | public boolean add(long element) { | |
| 43 | 1 | throw new UnsupportedOperationException("add(long) is not supported."); |
| 44 | } | |
| 45 | ||
| 46 | public boolean addAll(LongCollection c) { | |
| 47 | 296 | boolean modified = false; |
| 48 | 296 | for(LongIterator iter = c.iterator(); iter.hasNext(); ) { |
| 49 | 5564 | modified |= add(iter.next()); |
| 50 | } | |
| 51 | 295 | return modified; |
| 52 | } | |
| 53 | ||
| 54 | public void clear() { | |
| 55 | 4 | for(LongIterator iter = iterator(); iter.hasNext();) { |
| 56 | 26 | iter.next(); |
| 57 | 26 | iter.remove(); |
| 58 | } | |
| 59 | 4 | } |
| 60 | ||
| 61 | public boolean contains(long element) { | |
| 62 | 1002 | for(LongIterator iter = iterator(); iter.hasNext();) { |
| 63 | 8711 | if(iter.next() == element) { |
| 64 | 755 | return true; |
| 65 | } | |
| 66 | } | |
| 67 | 247 | return false; |
| 68 | } | |
| 69 | ||
| 70 | public boolean containsAll(LongCollection c) { | |
| 71 | 35 | for(LongIterator iter = c.iterator(); iter.hasNext();) { |
| 72 | 321 | if(!contains(iter.next())) { |
| 73 | 10 | return false; |
| 74 | } | |
| 75 | } | |
| 76 | 25 | return true; |
| 77 | } | |
| 78 | ||
| 79 | public boolean isEmpty() { | |
| 80 | 2126 | return (0 == size()); |
| 81 | } | |
| 82 | ||
| 83 | public boolean removeElement(long element) { | |
| 84 | 415 | for(LongIterator iter = iterator(); iter.hasNext();) { |
| 85 | 3249 | if(iter.next() == element) { |
| 86 | 193 | iter.remove(); |
| 87 | 193 | return true; |
| 88 | } | |
| 89 | } | |
| 90 | 222 | return false; |
| 91 | } | |
| 92 | ||
| 93 | public boolean removeAll(LongCollection c) { | |
| 94 | 30 | boolean modified = false; |
| 95 | 30 | for(LongIterator iter = c.iterator(); iter.hasNext(); ) { |
| 96 | 163 | modified |= removeElement(iter.next()); |
| 97 | } | |
| 98 | 30 | return modified; |
| 99 | } | |
| 100 | ||
| 101 | public boolean retainAll(LongCollection c) { | |
| 102 | 35 | boolean modified = false; |
| 103 | 35 | for(LongIterator iter = iterator(); iter.hasNext();) { |
| 104 | 370 | if(!c.contains(iter.next())) { |
| 105 | 207 | iter.remove(); |
| 106 | 207 | modified = true; |
| 107 | } | |
| 108 | } | |
| 109 | 35 | return modified; |
| 110 | } | |
| 111 | ||
| 112 | public long[] toArray() { | |
| 113 | 2114 | long[] array = new long[size()]; |
| 114 | 2114 | int i = 0; |
| 115 | 2114 | for(LongIterator iter = iterator(); iter.hasNext();) { |
| 116 | 29771 | array[i] = iter.next(); |
| 117 | 29771 | i++; |
| 118 | } | |
| 119 | 2114 | return array; |
| 120 | } | |
| 121 | ||
| 122 | public long[] toArray(long[] a) { | |
| 123 | 6 | if(a.length < size()) { |
| 124 | 2 | return toArray(); |
| 125 | } else { | |
| 126 | 4 | int i = 0; |
| 127 | 4 | for(LongIterator iter = iterator(); iter.hasNext();) { |
| 128 | 76 | a[i] = iter.next(); |
| 129 | 76 | i++; |
| 130 | } | |
| 131 | 4 | return a; |
| 132 | } | |
| 133 | } | |
| 134 | } |