JLab

dataStructures
Interface Set

All Superinterfaces:
Collection
All Known Implementing Classes:
ArraySet, BSTSet, LinearProbingHashSet, LinkedSet, QuadraticProbingHashSet

public interface Set
extends Collection

อินเตอร์เฟสที่บรรยายบริการของเซต

Author:
สมชาย ประสิทธิ์จูตระกูล

Method Summary
 void add(java.lang.Object element)
          add a new element without duplication.
 
Methods inherited from interface dataStructures.Collection
contains, isEmpty, remove, size
 

Method Detail

add

void add(java.lang.Object element)
add a new element without duplication.

Specified by:
add in interface Collection

JLab