Java com.badlogic.gdx.utils ObjectSet fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx.utils ObjectSet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx.utils ObjectSet.

The text is from its open source code.

Constructor

ObjectSet(int initialCapacity)
Creates a new set with a load factor of 0.8.
ObjectSet(ObjectSet set)
Creates a new set identical to the specified set.
ObjectSet()
Creates a new set with an initial capacity of 32 and a load factor of 0.8.

Method

booleanadd(T key)
Returns true if the key was not already in the set.
voidaddAll(Array array)
voidaddAll(T... array)
voidaddAll(ObjectSet set)
voidclear()
booleancontains(T key)
Tfirst()