enqueue(data: T): Queue<T> {
        this._data.push(data);
        return this;
    }