LinkedHashSet.this

Constructs a new, empty linked hash set with the specified initial capacity and load factor.

@param initialCapacity the initial capacity of the linked hash set @param loadFactor the load factor of the linked hash set @throws IllegalArgumentException if the initial capacity is less than zero, or if the load factor is nonpositive

  1. this(int initialCapacity, float loadFactor)
    class LinkedHashSet(E)
    this
  2. this(int initialCapacity)
  3. this()
  4. this(Collection!E c)
  5. this(E[] c)

Meta