
com.alipay.sofa.jraft.util.ArrayDeque Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* http://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 com.alipay.sofa.jraft.util;
import java.util.List;
/**
* Extend array list to add peek/poll first/last element.
*
* @author boyan ([email protected])
*
* 2018-Apr-11 11:14:38 AM
* @param
*/
public class ArrayDeque extends java.util.ArrayList {
private static final long serialVersionUID = -4929318149975955629L;
/**
* Get the first element of list.
*/
public static E peekFirst(List list) {
return list.get(0);
}
/**
* Remove the first element from list and return it.
*/
public static E pollFirst(List list) {
return list.remove(0);
}
/**
* Get the last element of list.
*/
public static E peekLast(List list) {
return list.get(list.size() - 1);
}
/**
* Remove the last element from list and return it.
*/
public static E pollLast(List list) {
return list.remove(list.size() - 1);
}
/**
* Get the first element of list.
*/
public E peekFirst() {
return peekFirst(this);
}
/**
* Get the last element of list.
*/
public E peekLast() {
return peekLast(this);
}
/**
* Remove the first element from list and return it.
*/
public E pollFirst() {
return pollFirst(this);
}
/**
* Remove the last element from list and return it.
*/
public E pollLast() {
return pollLast(this);
}
/**
* Expose this methods so we not need to create a new subList just to
* remove a range of elements.
*
* Removes from this deque all of the elements whose index is between
* {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.
* Shifts any succeeding elements to the left (reduces their index).
* This call shortens the deque by {@code (toIndex - fromIndex)} elements.
* (If {@code toIndex==fromIndex}, this operation has no effect.)
*
* @throws IndexOutOfBoundsException if {@code fromIndex} or
* {@code toIndex} is out of range
* ({@code fromIndex < 0 ||
* fromIndex >= size() ||
* toIndex > size() ||
* toIndex < fromIndex})
*/
@Override
public void removeRange(int fromIndex, int toIndex) {
super.removeRange(fromIndex, toIndex);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy