CustomCollection.java

/*
 *    Copyright 2009-2025 the original author or authors.
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *       https://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
package org.apache.ibatis.submitted.custom_collection_handling;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;

public class CustomCollection<T> {

  private final List<T> data = new ArrayList<>();

  public <K> K[] toArray(K[] a) {
    return data.toArray(a);
  }

  public Object[] toArray() {
    return data.toArray();
  }

  public List<T> subList(int fromIndex, int toIndex) {
    return data.subList(fromIndex, toIndex);
  }

  public int size() {
    return data.size();
  }

  public T set(int index, T element) {
    return data.set(index, element);
  }

  public boolean retainAll(Collection<?> c) {
    return data.retainAll(c);
  }

  public boolean removeAll(Collection<?> c) {
    return data.removeAll(c);
  }

  public T remove(int index) {
    return data.remove(index);
  }

  public boolean remove(Object o) {
    return data.remove(o);
  }

  public ListIterator<T> listIterator(int index) {
    return data.listIterator(index);
  }

  public ListIterator<T> listIterator() {
    return data.listIterator();
  }

  public int lastIndexOf(Object o) {
    return data.lastIndexOf(o);
  }

  public Iterator<T> iterator() {
    return data.iterator();
  }

  public boolean isEmpty() {
    return data.isEmpty();
  }

  public int indexOf(Object o) {
    return data.indexOf(o);
  }

  @Override
  public int hashCode() {
    return data.hashCode();
  }

  public T get(int index) {
    return data.get(index);
  }

  @Override
  public boolean equals(Object o) {
    if (!(o instanceof CustomCollection)) {
      return false;
    }
    return data.equals(((CustomCollection) o).data);
  }

  public boolean containsAll(Collection<?> c) {
    return data.containsAll(c);
  }

  public boolean contains(Object o) {
    return data.contains(o);
  }

  public void clear() {
    data.clear();
  }

  public boolean addAll(int index, Collection<? extends T> c) {
    return data.addAll(index, c);
  }

  public boolean addAll(Collection<? extends T> c) {
    return data.addAll(c);
  }

  public void add(int index, T element) {
    data.add(index, element);
  }

  public boolean add(T e) {
    return data.add(e);
  }

}