Class DatabaseObjects<T extends DatabaseObject>
java.lang.Object
java.util.AbstractCollection<T>
java.util.AbstractList<T>
java.util.ArrayList<T>
com.example.skeddly.business.database.DatabaseObjects<T>
- All Implemented Interfaces:
Serializable,Cloneable,Iterable<T>,Collection<T>,List<T>,RandomAccess,SequencedCollection<T>
DatabaseObjects are an ArrayList of DatabaseObject
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
ConstructorsConstructorDescriptionNo-Arg Constructor for DatabaseObjectsDatabaseObjects(Class<T> parameter) Constructor for DatabaseObjectsDatabaseObjects(Class<T> parameter, int initialCapacity) Constructor for the DatabaseObjectsDatabaseObjects(Class<T> parameter, Collection<? extends T> c) Constructor for the DatabaseObjects with a collection -
Method Summary
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, ensureCapacity, equals, forEach, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeIf, removeLast, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeMethods inherited from class java.util.AbstractCollection
containsAll, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, stream, toArrayMethods inherited from interface java.util.List
containsAll, reversed
-
Constructor Details
-
DatabaseObjects
public DatabaseObjects()No-Arg Constructor for DatabaseObjects -
DatabaseObjects
Constructor for DatabaseObjects- Parameters:
parameter- The class stored in the list
-
DatabaseObjects
Constructor for the DatabaseObjects- Parameters:
parameter- The class stored in the listinitialCapacity- The initial capacity of the array
-
DatabaseObjects
Constructor for the DatabaseObjects with a collection- Parameters:
parameter- The class stored in the listc- The collection to copy from
-
-
Method Details
-
getIds
Returns the IDs of the objects in the array- Returns:
- The IDs of the objects in the array
- See Also:
-
getParameter
-