Bouncy Castle Cryptography 1.27

java.util
Interface Set

All Superinterfaces:
Collection
All Known Implementing Classes:
AbstractSet

public interface Set
extends Collection


Method Summary
 boolean add(java.lang.Object o)
           
 boolean addAll(Collection c)
           
 void clear()
           
 boolean contains(java.lang.Object o)
           
 boolean containsAll(Collection c)
           
 boolean equals(java.lang.Object o)
           
 int hashCode()
           
 boolean isEmpty()
           
 Iterator iterator()
           
 boolean remove(java.lang.Object o)
           
 boolean removeAll(Collection c)
           
 boolean retainAll(Collection c)
           
 int size()
           
 java.lang.Object[] toArray()
           
 java.lang.Object[] toArray(java.lang.Object[] a)
           
 

Method Detail

size

public int size()
Specified by:
size in interface Collection

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface Collection

contains

public boolean contains(java.lang.Object o)
Specified by:
contains in interface Collection

iterator

public Iterator iterator()
Specified by:
iterator in interface Collection

toArray

public java.lang.Object[] toArray()
Specified by:
toArray in interface Collection

toArray

public java.lang.Object[] toArray(java.lang.Object[] a)
Specified by:
toArray in interface Collection

add

public boolean add(java.lang.Object o)
Specified by:
add in interface Collection

remove

public boolean remove(java.lang.Object o)
Specified by:
remove in interface Collection

containsAll

public boolean containsAll(Collection c)
Specified by:
containsAll in interface Collection

addAll

public boolean addAll(Collection c)
Specified by:
addAll in interface Collection

retainAll

public boolean retainAll(Collection c)
Specified by:
retainAll in interface Collection

removeAll

public boolean removeAll(Collection c)
Specified by:
removeAll in interface Collection

clear

public void clear()
Specified by:
clear in interface Collection

equals

public boolean equals(java.lang.Object o)
Specified by:
equals in interface Collection

hashCode

public int hashCode()
Specified by:
hashCode in interface Collection

Bouncy Castle Cryptography 1.27