|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object java.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>
内の iterator
Collection<E>
内の iterator
Set<E>
内の iterator
AbstractCollection<E>
内の iterator
ConcurrentModificationException
public int size()
Collection<E>
内の size
Set<E>
内の size
AbstractCollection<E>
内の size
public boolean isEmpty()
Collection<E>
内の isEmpty
Set<E>
内の isEmpty
AbstractCollection<E>
内の isEmpty
public boolean contains(Object o)
Collection<E>
内の contains
Set<E>
内の contains
AbstractCollection<E>
内の contains
o
- element whose presence in this set is to be tested.
public boolean add(E o)
Collection<E>
内の add
Set<E>
内の add
AbstractCollection<E>
内の add
o
- element to be added to this set.
public boolean remove(Object o)
Collection<E>
内の remove
Set<E>
内の remove
AbstractCollection<E>
内の remove
o
- object to be removed from this set, if present.
public void clear()
Collection<E>
内の clear
Set<E>
内の clear
AbstractCollection<E>
内の clear
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |