[all packages] [package net.sf.pizzacompiler.util] [class hierarchy] [index]

public class net.sf.pizzacompiler.util.Set<A>

(source file: /home/enno/source/tmp/pizza/main/src/net/sf/pizzacompiler/util/Set.pizza)
java.lang.Object
   |
   +----net.sf.pizzacompiler.util.Set<A>

The pure class interface.
public class Set<A>
  implements java.io.Serializable, Cloneable
Copyright (C) 2001 Nicolas Fortescue. This software is distributed under the Artistic License. See artistic.html or artistic.txt which came with this distribution.


Constuctor Index

O Set(int, float)
O Set(int)
O Set()

Methods

O clear()
O clone()
O contains(A)
O elements()
O isEmpty()
O put(A)
O rehash()
O remove(A)
O size()
O toString()

Constructors

O Set
public Set();

O Set

public Set(int initialCapacity);

O Set

public Set(int initialCapacity,
           float loadFactor);

Methods

O isEmpty
public boolean isEmpty();

O size

public int size();

O elements

public synchronized Enumeration<A> elements();

O contains

public synchronized boolean contains(A elem);

O rehash

protected void rehash();

O put

public synchronized void put(A elem);

O remove

public synchronized boolean remove(A elem);

O clear

public synchronized void clear();

O clone

public synchronized Object clone();

O toString

public synchronized String toString();


[all packages] [package net.sf.pizzacompiler.util] [class hierarchy] [index]
net.sf.pizzacompiler.util.Set.html