JLab

dataStructures
Interface Collection

All Known Subinterfaces:
List, Set
All Known Implementing Classes:
ArrayCollection, ArrayList, ArraySet, BSTCollection, BSTSet, LinearProbingHashSet, LinkedCollection, LinkedCollectionWithHeader, LinkedList, LinkedSet, QuadraticProbingHashSet, SinglyLinkedList

public interface Collection

อินเตอร์เฟสที่บรรยายบริการของคอลเล็กชัน

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

Method Summary
 void add(java.lang.Object element)
           
 boolean contains(java.lang.Object element)
           
 boolean isEmpty()
           
 void remove(java.lang.Object element)
           
 int size()
           
 

Method Detail

add

void add(java.lang.Object element)

remove

void remove(java.lang.Object element)

isEmpty

boolean isEmpty()

contains

boolean contains(java.lang.Object element)

size

int size()

JLab