|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractSet<E>
org.seasar.robot.util.LruHashSet<E>
public class LruHashSet<E>
| コンストラクタの概要 | |
|---|---|
LruHashSet(int limitSize)
|
|
| メソッドの概要 | |
|---|---|
boolean |
add(E o)
Adds the specified element to this set if it is not already present. |
void |
clear()
Removes all of the elements from this set. |
boolean |
contains(Object o)
Returns true if this set contains the specified element. |
boolean |
isEmpty()
Returns true if this set contains no elements. |
Iterator<E> |
iterator()
Returns an iterator over the elements in this set. |
boolean |
remove(Object o)
Removes the specified element from this set if it is present. |
int |
size()
Returns the number of elements in this set (its cardinality). |
| クラス java.util.AbstractSet から継承されたメソッド |
|---|
equals, hashCode, removeAll |
| クラス java.util.AbstractCollection から継承されたメソッド |
|---|
addAll, containsAll, retainAll, toArray, toArray, toString |
| クラス java.lang.Object から継承されたメソッド |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| インタフェース java.util.Set から継承されたメソッド |
|---|
addAll, containsAll, equals, hashCode, removeAll, retainAll, toArray, toArray |
| コンストラクタの詳細 |
|---|
public LruHashSet(int limitSize)
| メソッドの詳細 |
|---|
public Iterator<E> iterator()
Iterable<E> 内の iteratorCollection<E> 内の iteratorSet<E> 内の iteratorAbstractCollection<E> 内の iteratorConcurrentModificationExceptionpublic int size()
Collection<E> 内の sizeSet<E> 内の sizeAbstractCollection<E> 内の sizepublic boolean isEmpty()
Collection<E> 内の isEmptySet<E> 内の isEmptyAbstractCollection<E> 内の isEmptypublic boolean contains(Object o)
Collection<E> 内の containsSet<E> 内の containsAbstractCollection<E> 内の containso - element whose presence in this set is to be tested.
public boolean add(E o)
Collection<E> 内の addSet<E> 内の addAbstractCollection<E> 内の addo - element to be added to this set.
public boolean remove(Object o)
Collection<E> 内の removeSet<E> 内の removeAbstractCollection<E> 内の removeo - object to be removed from this set, if present.
public void clear()
Collection<E> 内の clearSet<E> 内の clearAbstractCollection<E> 内の clear
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||