Java java.util AbstractSet fields, constructors, methods, implement or subclass

Example usage for Java java.util AbstractSet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util AbstractSet.

The text is from its open source code.

Subclass

java.util.AbstractSet has subclasses.
Click this link to see all its subclasses.

Constructor

AbstractSet()
Sole constructor.

Method

booleanadd(E e)
Adds the specified element to this set if it is not already present (optional operation).
booleanaddAll(Collection c)
Adds all of the elements in the specified collection to this set if they're not already present (optional operation).
booleancontains(Object o)
Returns true if this set contains the specified element.
booleanremove(Object o)
Removes the specified element from this set if it is present (optional operation).