Package zombie.util.set
Class IntOpenHashSet
java.lang.Object
zombie.util.AbstractIntCollection
zombie.util.set.AbstractIntSet
zombie.util.set.IntOpenHashSet
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Cloneable,- IntCollection,- IntSet
public class IntOpenHashSet extends AbstractIntSet implements IntSet, java.lang.Cloneable, java.io.Serializable
- See Also:
- Serialized Form
- 
Field SummaryFields Modifier and Type Field Description static intDEFAULT_CAPACITYstatic intDEFAULT_GROWTH_CHUNKstatic doubleDEFAULT_GROWTH_FACTORstatic doubleDEFAULT_LOAD_FACTOR
- 
Constructor SummaryConstructors Constructor Description IntOpenHashSet()IntOpenHashSet(double double1)IntOpenHashSet(int int1)IntOpenHashSet(int[] intArray)IntOpenHashSet(int int1, double double1)IntOpenHashSet(int int1, double double1, double double2)IntOpenHashSet(int int1, double double1, int int2)IntOpenHashSet(IntHashFunction intHashFunction)IntOpenHashSet(IntHashFunction intHashFunction, double double1)IntOpenHashSet(IntHashFunction intHashFunction, int int1)IntOpenHashSet(IntHashFunction intHashFunction, int int1, double double1)IntOpenHashSet(IntHashFunction intHashFunction, int int1, double double1, double double2)IntOpenHashSet(IntHashFunction intHashFunction, int int1, double double1, int int2)IntOpenHashSet(IntCollection intCollection)
- 
Method SummaryMethods inherited from class zombie.util.set.AbstractIntSetequalsMethods inherited from class zombie.util.AbstractIntCollectionaddAll, containsAll, isEmpty, removeAll, retainAll, toArray, toStringMethods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface zombie.util.IntCollectionaddAll, containsAll, equals, isEmpty, removeAll, retainAll, toArray
- 
Field Details- 
DEFAULT_GROWTH_FACTORpublic static final double DEFAULT_GROWTH_FACTOR- See Also:
- Constant Field Values
 
- 
DEFAULT_GROWTH_CHUNKpublic static final int DEFAULT_GROWTH_CHUNK- See Also:
- Constant Field Values
 
- 
DEFAULT_CAPACITYpublic static final int DEFAULT_CAPACITY- See Also:
- Constant Field Values
 
- 
DEFAULT_LOAD_FACTORpublic static final double DEFAULT_LOAD_FACTOR- See Also:
- Constant Field Values
 
 
- 
- 
Constructor Details- 
IntOpenHashSetpublic IntOpenHashSet()
- 
IntOpenHashSet
- 
IntOpenHashSetpublic IntOpenHashSet(int[] intArray)
- 
IntOpenHashSetpublic IntOpenHashSet(int int1)
- 
IntOpenHashSetpublic IntOpenHashSet(double double1)
- 
IntOpenHashSetpublic IntOpenHashSet(int int1, double double1)
- 
IntOpenHashSetpublic IntOpenHashSet(int int1, double double1, double double2)
- 
IntOpenHashSetpublic IntOpenHashSet(int int1, double double1, int int2)
- 
IntOpenHashSet
- 
IntOpenHashSet
- 
IntOpenHashSet
- 
IntOpenHashSet
- 
IntOpenHashSet
- 
IntOpenHashSet
 
- 
- 
Method Details- 
addpublic boolean add(int int1)- Specified by:
- addin interface- IntCollection
- Overrides:
- addin class- AbstractIntCollection
 
- 
iterator- Specified by:
- iteratorin interface- IntCollection
 
- 
trimToSizepublic void trimToSize()- Specified by:
- trimToSizein interface- IntCollection
- Overrides:
- trimToSizein class- AbstractIntCollection
 
- 
clonepublic java.lang.Object clone()- Overrides:
- clonein class- java.lang.Object
 
- 
sizepublic int size()- Specified by:
- sizein interface- IntCollection
- Overrides:
- sizein class- AbstractIntCollection
 
- 
clearpublic void clear()- Specified by:
- clearin interface- IntCollection
- Overrides:
- clearin class- AbstractIntCollection
 
- 
containspublic boolean contains(int int1)- Specified by:
- containsin interface- IntCollection
- Overrides:
- containsin class- AbstractIntCollection
 
- 
hashCodepublic int hashCode()- Specified by:
- hashCodein interface- IntCollection
- Overrides:
- hashCodein class- AbstractIntSet
 
- 
removepublic boolean remove(int int1)- Specified by:
- removein interface- IntCollection
- Overrides:
- removein class- AbstractIntCollection
 
- 
toArraypublic int[] toArray(int[] intArray)- Specified by:
- toArrayin interface- IntCollection
- Overrides:
- toArrayin class- AbstractIntCollection
 
 
-