aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/j2me/java/util/Collection.java
blob: a911dcd63ff41286cc1650e24678f199ad4cc1a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package java.util;

public interface Collection
    {
            public boolean add(Object o) throws RuntimeException,ClassCastException,IllegalArgumentException;
            public boolean addAll(Collection c) throws RuntimeException,ClassCastException,IllegalArgumentException;
            public void clear()  throws RuntimeException;
            public boolean contains(Object o);
            public boolean containsAll(Collection c);
            public boolean equals(Object o);
            public int hashCode();
            public boolean isEmpty();
            public Iterator iterator();
            public /*SK13*/boolean remove(Object o) throws RuntimeException;
            public boolean removeAll(Collection c)  throws RuntimeException;
            public boolean retainAll(Collection c)  throws RuntimeException;
            public int size();
            public Object[] toArray();
            public Object[] toArray(Object[] a) throws ArrayStoreException;
    }