- newBidirectionalMap() - Static method in interface be.yildizgames.common.collection.Maps
-
Create a new bidirectional map, as for every components of this
collection, it does not accept any null value.
- newInsertionOrderedMap() - Static method in interface be.yildizgames.common.collection.Maps
-
- newInsertionOrderedSet() - Static method in interface be.yildizgames.common.collection.Sets
-
Build a new Set with LinkedHashSet implementation, order insertion is
preserved.
- newList() - Static method in interface be.yildizgames.common.collection.Lists
-
Build a new List with NoNullArrayList implementation.
- newList(int) - Static method in interface be.yildizgames.common.collection.Lists
-
Build a new List with NoNullArrayList implementation and a given size.
- newList(T...) - Static method in interface be.yildizgames.common.collection.Lists
-
Build a new List with NoNullArrayList implementation and set a collection
of objects inside.
- newList(Collection<T>) - Static method in interface be.yildizgames.common.collection.Lists
-
- newMap() - Static method in interface be.yildizgames.common.collection.Maps
-
Create a new map, as for every components of this collection, it does not
accept any null value.
- newOrderedSet() - Static method in interface be.yildizgames.common.collection.Sets
-
Build a new Set with TreeSet implementation, order is following the
natural objects order.
- newSet() - Static method in interface be.yildizgames.common.collection.Sets
-
Build a new Set with HashSet implementation, order insertion is not
garanteed, use newOrderSet or newInsersionOrderedSet for that case.
- newSet(T...) - Static method in interface be.yildizgames.common.collection.Sets
-
Build a new Set with HashSet implementation from an existing array of
objects.
- newSet(Collection<T>) - Static method in interface be.yildizgames.common.collection.Sets
-
- newSingleElementList(T) - Static method in interface be.yildizgames.common.collection.Lists
-