1 17 package org.apache.commons.collections.primitives; 18 19 28 public interface BooleanCollection 29 { 30 48 boolean add(boolean element); 49 50 63 boolean addAll(BooleanCollection c); 64 65 72 void clear(); 73 74 81 boolean contains(boolean element); 82 83 91 boolean containsAll(BooleanCollection c); 92 93 97 boolean isEmpty(); 98 99 105 BooleanIterator iterator(); 106 107 122 boolean removeAll(BooleanCollection c); 123 124 135 boolean removeElement(boolean element); 136 137 150 boolean retainAll(BooleanCollection c); 151 152 156 int size(); 157 158 171 boolean[] toArray(); 172 173 189 boolean[] toArray(boolean[] a); 190 } 191 | Popular Tags |